https://github.com/ryomendev/django
Dive into Django with this comprehensive GitHub repository. It covers everything from basics to advanced concepts, including models, views, templates, authentication, REST APIs, and deployment. Perfect for beginners and intermediates to master web development with Django!
https://github.com/ryomendev/django
bootstrap django django-admin django-application django-blog django-framework models mysqlite3
Last synced: 7 months ago
JSON representation
Dive into Django with this comprehensive GitHub repository. It covers everything from basics to advanced concepts, including models, views, templates, authentication, REST APIs, and deployment. Perfect for beginners and intermediates to master web development with Django!
- Host: GitHub
- URL: https://github.com/ryomendev/django
- Owner: RyomenDev
- Created: 2025-01-19T05:04:53.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-24T17:13:19.000Z (over 1 year ago)
- Last Synced: 2025-03-17T05:32:48.302Z (about 1 year ago)
- Topics: bootstrap, django, django-admin, django-application, django-blog, django-framework, models, mysqlite3
- Language: Python
- Homepage:
- Size: 505 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Django
```
django-admin
django-admin startproject django_project
cd django_project
python manage.py runserver
```
[localhost](http://127.0.0.1:8000/) (http://127.0.0.1:8000/)
[localhost](http:/localhost:8000/) (http://localhost:8000/)
### Adding multiple project in same folder(project)
```
python manage.py startapp blog
```