Guest User

Untitled

a guest
Feb 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. django-admin startproject first_project
  2.  
  3. python manage.py runserver
  4.  
  5. python manage.py startapp first_app
  6.  
  7.  
  8. //first_project/settings.py
  9. INSTALLED_APPS = [
  10. ...,
  11. 'first_app',
  12. ]
Add Comment
Please, Sign In to add comment