Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 652 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 652 Bytes

A simple buildout to run Euphorie

Installation

  1. You need to add a custom.cfg file to the buildout root directory. This file should contains something like:
[settings]
main-package = your.euphorie.flavour
  1. Create a buildout.cfg, you can symlink one in the profiles folder, e.g.:
ln -s profiles/development.cfg buildout.cfg
  1. Run make

Setup alembic table on a fresh DB:

# Creates the table if missing
./bin/alembic --config etc/alembic.ini ensure_version
# Sets the last version
./bin/alembic --config etc/alembic.ini stamp `./bin/alembic --config etc/alembic.ini heads|awk '{print $1}'`