Metadata-Version: 2.4
Name: brickdjango
Version: 0.1.0
Summary: A clean, modular Django project structure with environment and Docker support.
Author: Amol Balpande
Author-email: amolbalpande2020@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

🔤 "BrickDjango" – Meaning in Depth
BrickDjango is a metaphorical name that combines:

"Brick" – the basic building block of construction.

"Django" – the popular Python web framework you're customizing.

🧱 What “Brick” Suggests:
Modularity: Bricks are independent units that come together to form larger structures. Similarly, your Django structure has modular apps, separated settings, and organized layout.

Foundation & Scalability: Bricks form the foundation of a strong, scalable structure. Your custom project structure aims to do the same for Django projects.

Simplicity with Power: Bricks are simple, but powerful when arranged well — just like your approach to Django project architecture.


Master/
│
|
├── base/
│   ├── utils/
│   │   ├── utils.py/
|
├── apps/
│   ├── __init__.py
│   ├── app1/
│   │   ├── __pycache__/
│   │   ├── migrations/
│   │   │   ├── __init__.py
│   │   ├── admin.py
│   │   ├── apps.py
│   │   ├── models.py
│   │   ├── tests.py
│   │   ├── views.py
│   │   
│   └── app2/
│       ├── __pycache__/
│       ├── migrations/
│       │   ├── __init__.py
│       ├── admin.py
│       ├── apps.py
│       ├── models.py
│       ├── tests.py
│       ├── views.py
│
├── config/
│   ├── settings/
│   │   ├── __pycache__/
│   │   ├── base.py
│   │   ├── development.py
│   │   ├── production.py
│   │   ├── .env
│   │   ├── __init__.py
│   ├── asgi.py
│   ├── wsgi.py
│   ├── url.py
│   ├── __init__.py
│
├── README.md
├── requirements.txt
├── venv/
├── .gitignore
├── manage.py
