The Basics

Django (Backend)

  1. Create venv (manage.py; automatic create)

    python -m venv venv
    source venv/bin/activate        # For Linux/Mac
    venv\\Scripts\\activate           # For Windows
    
  2. Install requirement.txt

    pip install -r requirement.txt
    
  3. makemigrations and migrate

    python manage.py makemigrations
    python manage.py migrate
    
  4. Install backupdb.sql from 👉 (MySQL)

  5. Start Server

    python manage.py runserver
    

React + Vite (MUI components)

npm install