You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a virtual environment($ virtualenv -p python3 env_name)
Activate the environment ($ source env_name/bin/activate)
2-Install the requirements
pip install -r requirements.txt
3-Set up the Database
Create a user (>>>CREATE USER <username> IDENTIFIED BY 'password';)
Grant all privileges (>>>GRANT ALL PRIVILEGES ON * . * TO 'USER';)
Create a database (>>>CREATE DATABASE <databasename>;)
Create a file named database.conf(Inside the directory where settings.py is present)
The contents of database.conf should be in the same format as it is give in database.conf.example