Install the Python Requirements using pip:
pip install -r requirements.txt
The Creation of the in memory database as well as the seeding of test data is currently tied into the app’s bootstrap code. This means that simply running the main python file will setup and seed the in memory database.
The Coronials project uses a sqlite database with the URI of 'sqlite:///coronials-collection.db'
In order to create the In Memory Database you will need to run the database_setup script. Navigate to the repo directory:
cd repo
Run the database_setup script to create the database and tables from the defined models:
python database_setup.py