Django (Day 6) - RMS Project
Project Code: https://github.com/Suryaa-k/RMS-Django/tree/main/rms
Steps to follow for execution of the code
# 1. Create & activate a virtual environment (recommended)
python -m venv venv
# 2. Install dependencies
pip install -r requirements.txt
# 3. Apply migrations
python manage.py migrate
# 4. Create an admin superuser
python manage.py createsuperuser
# 5. Run the development server
python manage.py runserver
Comments
Post a Comment