Blog Website, where you can write blog, edit blog, comment, like, sign up, login, logout and much more.
- 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