Admin Categories | Admin Products |
Index | Shop |
Product details |
- Open your terminal and navigate to the project server directory.
- Activate the virtual environment:
- For Windows:
venv\Scripts\activate
- For Linux or MacOS:
source venv/bin/activate
- For Windows:
- Open a terminal with the virtual environment activated.
- Install the dependencies listed in
requirements.txt
:pip install -r requirements.txt
- Open a terminal with the virtual environment activated.
- Make migrations for your Django models:
python manage.py makemigrations
- Apply migrations to your database:
python manage.py migrate
- Create a superuser for the Django admin:
python manage.py createsuperuser
- Start the Django server with the following command:
python manage.py runserver
- Feel free to contribute to the project or report any issues by opening an issue or sending a pull request.
This project is licensed under the MIT License. For more information, read the license file.