Access to Django apps
Configuration details
When the webserver receives a request on the admin.dataepartners.com
URL, it routes the request to the django framework.
The different django apps can then be accessible at the following URLs :
$ http://admin.dataepartners.ai #Django default site
$ http://admin.dataepartners.ai/admin #Django administration site
$ https://admin.dataepartners.ai/demo1/ #Django demo1 site
The high level view of django apps are created under the directory :
$ cd ~/myprojectdir #Django default working directory
~/myprojectdir$ ls
manage.py #main script to manage Django apps
myproject #default directory for Django management
myprojectenv #virtual environement directory for Python execution
static #default directory for static pages
demo1 #Django app
The detailed view of django apps are created under the directory :
manage.py
myproject
myprojectenv
static
demo1
├── admin.py
├── apps.py
├── migration
├── models.py
├── tests.py
├── views.py
├── templates
├── demo1
├── index.html
├── new_page.html