Skip to content

Latest commit

 

History

History
54 lines (43 loc) · 1.72 KB

README.md

File metadata and controls

54 lines (43 loc) · 1.72 KB

Pcodlive

Theme:

Blog Website, where you can write blog, edit blog, comment, like, sign up, login, logout and much more.

Tech Stack:

  • Frontend: Html,Css
  • Backend: Django
  • Version Control: Git and GitHub
  • Hosting: Heroku
  • Code Editor and tools: VS Code
Setup Steps
  • Setup Virtual environment
$ python3 -m venv env
  • Activate the virtual environment
$ source env/bin/activate
  • Install dependencies using
$ pip install -r requirements.txt
  • Make migrations using
$ python manage.py makemigrations
  • Migrate Database
$ python manage.py migrate
  • Create a superuser
$ python manage.py createsuperuser
  • Run server using
$ python manage.py runserver