Ideal Status is a platform to manage your websites status.
After all, you need to create your environment and config your configuration file:
pip install virtualenv
virtualenv env
source env/bin/activate
pip install -r requirements.txt
cp config.default.py config.py
nano config.py
Set your secret key
SECRET_KEY = ''
Now you need to create the database using sqlite3, run the following commands:
python
from app import db, app
db.create_all(app=app)
exit()
To deactivate your enviroment run the following command:
deactivate