8000 GitHub - sss2482/eg
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

sss2482/eg

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Engineering Design Course Website

This repository is part of the Engineering Design course in our first semester. It contains the source code for a website that acts as a connecting interface between guides and their respective guided individuals.

How to Run This Project

Follow these steps to set up and run the project on your local machine:

  1. Clone the repository:

    git clone [<repository-url>](https://github.com/sss2482/eg.git)
    cd eg
  2. Create a virtual enviroment

    python -m venv <venv_name>
  3. Activate the virtual environment

    <venv_name>\Scripts\activate   # For Windows
    source <venv_name>/bin/activate  # For macOS/Linux
  4. Install dependencies

    pip install -r requirements.txt
  5. Set up the database

    py manage.py makemigrations
    py manage.py migrate
  6. Run the server

    py manage.py runserver
0