Configuration

All the API configuration variables are available in a file called confs/config.py.

Command line arguments

The app can be executed launching the run.py file found in the root of the project.

What you should modify after a fork

Setup what will be the admin user and where the sqllite should be located:

USER = 'user@nomail.org'
PWD = 'test'
SQLLITE_DBFILE = 'latest.db'

Set the following to true and run the server to clean everything and restart from scratch.

REMOVE_DATA_AT_INIT_TIME = False

Other options

Take a look at all the variables.

You can add all the configurations for the existing plugins, here's a list of links to see them all:

For example:

  • you could use Mysql/Postgres relational db instead of the development sqllite file db provided.