Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/diixo/django-web-app-2


https://github.com/diixo/django-web-app-2

Last synced: about 1 month ago
JSON representation

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)