This page is a quick reference for all of the commands that are used to manage the application. They are split into commands needed to configure the studies themselves and those required for the admin interface.
The setup command loads the website configuration and creates the database. It can only be run once (unless the database
is manually deleted). If you need to change a running system then you will need to use the reset command instead.
The command is executed by typing:
flask --debug setup [path_to_configuration]
The reset command reloads the website configuration and resets the database after the setup command has been run.
This command can be used when:
Note: This is a destructive operation that will delete all the database content and any exported files in the original export location. You will be asked to confirm that you want to run the operation before the script will execute.
The command is executed by typing:
flask --debug reset [path_to_configuration]
The run command starts a test server provided by flask. This should not be used in a production system. The Flask
project provides guidance on deploying the application in production.
The run command is executed by typing (changing the port number to the port number you want to use):
flask --debug run --port=5001
The database can be exported with the export command. The location where the zip file will be created can be set in the exportPathLocation key in the configuration file.
The data in the database can be exported using the following command. This will export the database as a zip file of
.csv files.
flask --debug export
To export to a .tsv files rather than .csv files the format argument can be added to the command.
flask --debug export --format=tsv
This section lists all of the commands you should need to setup the admin side of the system. Some of these commands are provided by external dependencies but are listed here for ease of reference.
The setup_admin command creates the tables required for storing information about admin users. This command must be
run when the application is installed with the admin interface enabled.
flask --debug setup_admin
The command creates an admin user with the provided email address. Admin users must be created on the command line. The command will prompt you to enter a password as part of the process.
flask users create email@example.com
This command will activate the user with the given email address (by default the create user command does not activate the user).
flask users activate email@example.com
To see the full range of commands provided by the various packages installed you can use the built in help system.
To get help with all the flask commands or groups of commands available:
flask --help
To find out more about the commands relating to a subgroup such as users:
flask users --help