Create a virtual environment($ virtualenv -p python3 env_name)
Activate the environment ($ source env_name/bin/activate)
pip install -r requirements.txt
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
$ python manage.py makemigrations
$ python manage.py migrate
( for production : pip install -U channels_redis )
$ sudo apt-get install redis-server
$ redis-server
celery -A excelplay_dalalbull beat
To see the status
celery -A excelplay_dalalbull worker -l info
$ python manage.py runserver