Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 500 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 500 Bytes

Create Virtual Environment

python -m venv myvirtualenv

Activate virtual environment

myvirtualenv\Scripts\activate

Clone the repository:

Navigate to the project directory:

  • cd CodeCrafter_Blog

Install dependencies:

pip install -r requirements.txt

Apply database migrations:

python manage.py migrate

Run the development server:

  • python manage.py runserver

Access the application at http://localhost:8000/.