Django Project Setup

Prerequisites

  • Git installed on your machine
  • Python and pip installed
  • Virtualenv installed (optional but recommended)

Getting Started

  1. Clone the repository:

    git clone <[repository_url](https://github.com/fozygcl/School-Management-System/)>

i. Navigate to the project directory:

cd <School-Management-System>

ii. Create and activate a virtual environment:

python -m venv venv
source venv/bin/activate #linux users, check online resources for windows

iii. Install dependencies

pip install -r requirements.txt

iv. Create a copy of the .env.example file and rename it to .env.

v. Run the Django development server:

python manage.py runserver

Note:

Access the live URL:

The live URL can be found at: Live URL VisitAPI Docs for API documentation.

Additional Notes

  • Make sure to set up your database configurations in the .env file.
  • Customize any additional settings or configurations as needed.