https://github.com/diixo/django-web-app-2
https://github.com/diixo/django-web-app-2
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/diixo/django-web-app-2
- Owner: diixo
- Created: 2024-04-12T11:43:59.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-13T09:44:26.000Z (over 1 year ago)
- Last Synced: 2025-02-14T10:43:26.568Z (9 months ago)
- Language: Python
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## django-web-app-2 (continuous of [django-web-app](https://github.com/diixo/django-web-app))
### Description:
- Django 4.2.8
```bash
django-admin startproject core
```
```bash
cd core
```
```bash
py manage.py startapp app_main
```
- Run server:
```bash
py manage.py runserver
```
- Start from: **http://127.0.0.1:8000** or **http://localhost:8000/**
- Migrates
```bash
py manage.py migrate
```
- For any model changes we should make migrations:
```bash
py .\manage.py makemigrations
py .\manage.py migrate
```
### References
[goit-web-django-hw](https://github.com/diixo/goit-web-django-hw)