Skip to content

Latest commit

 

History

History
63 lines (41 loc) · 1.15 KB

README.md

File metadata and controls

63 lines (41 loc) · 1.15 KB

Django Project Setup Guide 🚀

This guide provides detailed steps for setting up a Django project, ensuring a smooth and efficient development experience.

Prerequisites 📋

  • Python 3.x
  • pip
  • Virtual environment (optional, but recommended)

Quick Start 🚀

Step 1: Clone the Repository

git clone <repository-url>
cd <repository-name>

Step 2: Virtual Environment Setup

python -m venv venv
source venv/bin/activate  # On Windows use `venv\Scripts\activate`

Step 3: Install Dependencies

pip install -r requirements.txt

Step 4: Initialize Django

python manage.py makemigrations
python manage.py migrate
python manage.py createsuperuser  # Optional

Step 5: 🌟 Start Developing!

python manage.py runserver

Features 🌟

  • Easy setup and installation.
  • Detailed guide for Django beginners.
  • Perfect starting point for Django projects.

Contribution Guidelines 🤝

Want to contribute? Great! First, read this page (link to contribution page).

Need Help? 🤔

Feel free to contact us at [email protected].


Happy Coding! 😊