https://github.com/alexandrehiroyuki/ecommerce-practice
Udemy django e-commerce practice project.
https://github.com/alexandrehiroyuki/ecommerce-practice
django practice practice-project python python3
Last synced: about 2 months ago
JSON representation
Udemy django e-commerce practice project.
- Host: GitHub
- URL: https://github.com/alexandrehiroyuki/ecommerce-practice
- Owner: AlexandreHiroyuki
- Created: 2022-02-07T17:11:16.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-21T18:21:39.000Z (over 4 years ago)
- Last Synced: 2025-10-24T09:54:03.791Z (8 months ago)
- Topics: django, practice, practice-project, python, python3
- Language: Python
- Homepage:
- Size: 52.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Initialize virtual env:
```
source ./Scripts/activate
```
Run server:
```
python src/manage.py runserver
```
Collect statics:
```
python manage.py collectstatic
```
Migrations:
```
python manage.py makemigrations
python manage.py migrate
```