Simple Django 2.1 Blog Implementation
- Create a virtual environment
- Activate the environment
- Pull the code
- Install the required packages
pip install -r
requirements.txt - Setup PostgreSQL db and update db details to the setting.py file(change to any other db as per preference
python manage.py makemigrations polls
python manage.py migrate
python manage.py runserver
- Create a superuser
python manage.py createsuperuser