Checkout Pro Version

Quick Start

1. Requirements

Before proceeding, ensure you have the latest stable version of Python
Recommended environment:
  • Python 3.10+
  • Django 5.0+
  • Pip 23+
  • Virtual Environment (venv / virtualenv)

2. Installation

Open project folder and install its dependencies. We recommend using a virtual environment.
Step Command
Create Virtual Environment

python -m venv venv

              
Activate Virtual Environment

# Windows
venv\Scripts\activate

# macOS / Linux
source venv/bin/activate

              
Install Dependencies

pip install -r requirements.txt

              
Start Development Server

python manage.py runserver

              
Make Migrations

python manage.py makemigrations
              
Apply Migrations

python manage.py migrate

              

3. Run Commands

Use the following commands inside your activated virtual environment.
Action Command
Run Development Server

python manage.py runserver
              
Create a New App

python manage.py startapp appname
              
Create Admin User ( Optional )

python manage.py createsuperuser
              

1. Requirements

Before proceeding, ensure you have the latest stable version of Python
Recommended environment:
  • Python 3.10+
  • Django 5.0+
  • Pip 23+
  • Virtual Environment (venv / virtualenv)

2. Installation

Open project folder and install its dependencies. We recommend using a virtual environment.
Step Command
Create Virtual Environment

python -m venv venv

              
Activate Virtual Environment

# Windows
venv\Scripts\activate

# macOS / Linux
source venv/bin/activate

              
Install Dependencies

pip install -r requirements.txt

              
Start Development Server

python manage.py runserver