Welcome to Python project! This guide will walk you through the process of setting up the project on a Windows machine.
-
Fork this repository
-
Open Command Prompt or Git Bash.
-
Navigate to the directory where you want to clone the project.
-
Run the following command to clone the repository:
git clone https://github.com/your-username/Onestop.git
Replace
your-username
with your GitHub username.
-
Navigate to the project directory using Command Prompt or Git Bash:
will be update at the end of the project
-
Create a virtual environment:
python -m venv (your virtual environment name)
For example:
python -m venv venv
-
Activate the virtual environment:
-
Command Prompt:
venv\Scripts\activate
-
Git Bash:
source venv/Scripts/activate
-
-
With the virtual environment active, install project dependencies using pip:
pip install -r requirements.txt
- In the Root directory run the following command:
OR
python3 Onestop/manage.py migrate python3 Onestop/manage.py runserver
py Onestop/manage.py migrate py Onestop/manage.py runserver
- Visit http://localhost:8000/ to access the platform.
- Django: As the primary web framework for building the platform.
- Python: To write backend logic and scripts.
- HTML/CSS/JavaScript: For front-end development and user interface.
- SQL: As the database system to store user data and information.