Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/diixo/django-web-app-2
https://github.com/diixo/django-web-app-2
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/diixo/django-web-app-2
- Owner: diixo
- Created: 2024-04-12T11:43:59.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-04-13T09:44:26.000Z (9 months ago)
- Last Synced: 2024-04-14T08:06:34.137Z (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)