Khayratdinov / django-template

πŸ“¦οΈ This is a template structure for developing django-based applications

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

❗️ The project was not completed ❗️

πŸ™‚ I will try to finish soon πŸ‘¨πŸΌβ€πŸ’»

Django Project Structure

This is a template structure for developing django-based applications

change project name

python manage.py renameproject project youprojectname

Generated secret key.

python manage.py generate_secret_key

Save the generated secret key to base.py file.

python manage.py generate_secret_key -s

Project Tree

.

β”œβ”€β”€ deployments
β”œβ”€β”€ dokcer/
β”‚   β”œβ”€β”€ local/
β”‚   β”‚   β”œβ”€β”€ django/
β”‚   β”‚   β”‚   └── Dockefile
β”‚   β”‚   └── nginx/
β”‚   β”‚       └── Dockerfile
β”‚   └── production/
β”‚       β”œβ”€β”€ django/
β”‚       β”‚   └── Dockefile
β”‚       └── nginx/
β”‚           └── Dockefile
β”œβ”€β”€ docs
β”œβ”€β”€ locale
β”œβ”€β”€ project/
β”‚   β”œβ”€β”€ apps/
β”‚   β”‚   β”œβ”€β”€ core/
β”‚   β”‚   β”‚   β”œβ”€β”€ management/
β”‚   β”‚   β”‚   β”‚   └── commands/
β”‚   β”‚   β”‚   β”‚       β”œβ”€β”€ __init__.py
β”‚   β”‚   β”‚   β”‚       └── renameproject.py
β”‚   β”‚   β”‚   β”œβ”€β”€ __init__.py
β”‚   β”‚   β”‚   β”œβ”€β”€ migrations/
β”‚   β”‚   β”‚   β”‚   └── __init__.py
β”‚   β”‚   β”‚   β”œβ”€β”€ admin.py
β”‚   β”‚   β”‚   β”œβ”€β”€ apps.py
β”‚   β”‚   β”‚   β”œβ”€β”€ models.py
β”‚   β”‚   β”‚   β”œβ”€β”€ tests.py
β”‚   β”‚   β”‚   └── views.py
β”‚   β”‚   └── __init__.py
β”‚   β”œβ”€β”€ media
β”‚   β”œβ”€β”€ settings/
β”‚   β”‚   β”œβ”€β”€ __init__.py
β”‚   β”‚   β”œβ”€β”€ base.py
β”‚   β”‚   β”œβ”€β”€ development.py
β”‚   β”‚   └── production.py
β”‚   β”œβ”€β”€ static
β”‚   β”œβ”€β”€ templates
β”‚   β”œβ”€β”€ __init__.py
β”‚   β”œβ”€β”€ asgi.py
β”‚   β”œβ”€β”€ urls.py
β”‚   └── wsgi.py
β”œβ”€β”€ requirements/
β”‚   β”œβ”€β”€ base.txt
β”‚   β”œβ”€β”€ development.txt
β”‚   └── production.txt
β”œβ”€β”€ scripts
β”œβ”€β”€ .dockerignore
β”œβ”€β”€ .env.example
β”œβ”€β”€ .gitignore
β”œβ”€β”€ docker-compose.yml
β”œβ”€β”€ manage.py
└── README.md

About

πŸ“¦οΈ This is a template structure for developing django-based applications


Languages

Language:Python 92.8%Language:Shell 4.0%Language:Dockerfile 3.2%