Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 690 Bytes

README.md

File metadata and controls

47 lines (33 loc) · 690 Bytes

Ideal Status

Ideal Status is a platform to manage your websites status.

Installation

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

License

MIT