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
Now in the terminal type these commands (make sure virtualenv is activated) -
python manage.py makemigrations
python manage.py migrate
python manage.py createsuperuser -> provide username and password
Now for the final step to start the server do this -
python manage.py runserver
open this http://127.0.0.1:8000/ in the incognito window.
About
Created a blogging website using Django Framework in Python. Deployed the website on the Heroku server and have used Amazon AWS S3 Bucket for storing media files. Also used AWS cloudfront for caching. Used Git as version control and PostgreSQL as a database. Also integrated Django channels to create a message sharing (chatting) page. The blog is…