- Python 3
- A postgres database
- Virtual environment (recommended)
virtualenv -p python3 venv
source venv/bin/activate
pip install -r requirements.txtCreate a file named local.yaml with the following contents:
postgres.credentials.password: SECRET_PASSWORD
datadir: PATH_TO_DATAReview the file named PROJECT.yaml and if any of these values should
be overridden, update local.yaml accordingly.
If the database server is localhost, you may create a database instance
by:
./run.py --run create_databaseGet a list of available operations by:
./run.py --listTo run all operations, run:
./run.pyTo run one or more specific operations, run:
./run.py --run NAMEFor more help, try:
./run.py -h