This is the official repository for our Capstone Project developed using the Django web framework.
- Python 3.8+
- pip (Python package manager)
These instructions will help you set up and run the project locally.
- Clone the Repository: (If you haven't already)
git clone https://github.com/RoelVillaluz/DTI-Capstone.git
- Navigate to the project directory:
cd DTI-Capstone/dti_project/ - Install dependencies:
pip freeze > requirements.txt pip install -r requirements.txt - Run migrations:
python manage.py migrate
- Run the development server:
python manage.py runserver
- Open your browser and go to:
http://127.0.0.1:8000/
- Make sure you are inside the dti_project/ directory before running manage.py.