2. Create the project in django

so open the terminal by pressing clt+alt+t
type these to create the project ie.,


$ django-admin startproject btms
$ cd btms

btms$ tree
.
|-- btms
|   |-- __init__.py
|   |-- settings.py
|   |-- urls.py
|   `-- wsgi.py
`-- manage.py

1 directory, 5 files




So when we create the project we will get the scoffolding folder ie,

__init__.py(default constructor)
setting.py(all setup will be there)
url.py(mapping will be there)
wsgi.py(later we will talk)

and manage.py

No comments:

Post a Comment