quick-django
Create django project quickly single command
1) djnago app
2) urls.py
3) templates folder
4) static folder
5) and add the default code in view.py
6) models.py
7) admin.py
8) index.html
Install
pip install quick-django
Open cmd and type
python -m quick-django myproject myproject_app
Github
MominIqbal-1234 / quick-django
quick-django save your time and increase your development speed in django project
Downloads quick-django
quick-django
Create django project quickly single command with all necessary file like djnago app, urls.py, templates folder, static folder and add the default code in view.py,models.py,admin.py and create index.html
How to use quick-django
Step: 1
pip install quick-django
Step: 2
Window
open cmd in your porject folder and run this command
python -m quick-django myproject myproject_app
Linux
open terminal in your porject folder and run this command
python3 -m quick-django myproject myproject_app
Configuration
# setting.py
INSTALLED_APPS = [
....
'myproject_app',
]
For Rest-Api
Window
open cmd in your porject folder and run this command
python -m quick-django myproject myproject_app --restapi
Linux
open terminal in your porject folder and run this command
python3 -m quick-django myproject myproject_app --restapi
Configuration
# setting.py
INSTALLED_APPS = [
'myproject_app',
…
Top comments (2)
I started to learn Django, and this resource helped me a lot. Thanks you so much Momin!
Thanks you so much Bro