[Level 2] How to create Django project and apps by command mode.
How to create a Django project and apps by command mode,
please follow the below commands:
Wish this helps.
regards,
Stanley Huang
please follow the below commands:
# django-admin.py startproject myProject
# cd ./myProject
# django-admin.py startapp myApp1
# cd ./myApp1
# python manage.py runserver [0.0.0.0:]8888
Wish this helps.
regards,
Stanley Huang
Comments
Post a Comment