Skip to content

Latest commit

 

History

History
66 lines (42 loc) · 1.49 KB

README.md

File metadata and controls

66 lines (42 loc) · 1.49 KB

Blog Application

Description

Blog Application user can Add, Delete, Update posts

-------------------------------------------------------------

Docker Setup:

docker-compose up --build

-------------------------------------------------------------

Local Setup 👨‍💻:

1.Virtual Environment Setup :

For Linux :
$. python3 -m venv env
$. source env/bin/activate
For Windows :
$. py -m venv env
$. env\Scripts\activate

-------------------------------------------------------------

2. Installing Dependencies:

 pip install wheel
 pip install -r requirements.txt

-------------------------------------------------------------

3. Create Database Tables and Superuser:

Note: For Windows Users Replace python3 with python

 python3 manage.py makemigrations
 python3 manage.py migrate
 python3 manage.py createsuperuser

-------------------------------------------------------------

6. Run Server

 python3 manage.py runserver

9. Go Live :

http://localhost:8000/