Skip to content

Latest commit

 

History

History
57 lines (37 loc) · 758 Bytes

README.md

File metadata and controls

57 lines (37 loc) · 758 Bytes

Prerequisites

Before you begin, ensure you have met the following requirements:

  • Python installed (version x.x.x)
  • Django installed (version x.x.x)
  • Git installed
  • ...

Setup

1. Clone the repository

git clone https://github.com/Aerin2805/SHAKti.git
cd your-repo

2. Create a virtual environment

python -m venv venv

3. Activate the virtual environment

On Windows:

venv\Scripts\activate

4. Install dependencies

pip install -r requirements.txt

6. Apply database migrations

python manage.py migrate

7. Create a superuser (optional)

python manage.py createsuperuser

8. Run the development server

python manage.py runserver