Open-source Django project crafted on top of Modernize, an open-source Bootstrap 5
design from AdminMart
.
The product is designed to deliver the best possible user experience with highly customizable feature-rich pages. Modernize
has easy and intuitive responsive design whether it is viewed on retina screens or laptops.
- 👉 Django Modernize -
Product Page
- 👉 Getting Started with Django - a
comprehensive tutorial
Features:
- ✅
Up-to-date Dependencies
- ✅ Theme: Django Admin Modernize, designed by AdminMart
can be used in any Django project
(new or legacy)
- ✅ Authentication:
Django.contrib.AUTH
, Registration - 🚀
Deployment
CI/CD
flow viaRender
👉 Download the code
$ git clone https://github.com/app-generator/django-modernize.git
$ cd django-modernize
👉 Install modules via
VENV
$ virtualenv env
$ source env/bin/activate
$ pip install -r requirements.txt
👉 Set Up Database
$ python manage.py makemigrations
$ python manage.py migrate
👉 Create the Superuser
$ python manage.py createsuperuser
👉 Start the app
$ python manage.py runserver
At this point, the app runs at http://127.0.0.1:8000/
.
The project is coded using a simple and intuitive structure presented below:
< PROJECT ROOT >
|
|-- core/
| |-- settings.py # Project Configuration
| |-- urls.py # Project Routing
|
|-- home/
| |-- views.py # APP Views
| |-- urls.py # APP Routing
| |-- models.py # APP Models
| |-- tests.py # Tests
| |-- templates/ # Theme Customisation
| |-- includes #
| |-- custom-footer.py # Custom Footer
|
|-- requirements.txt # Project Dependencies
|
|-- env.sample # ENV Configuration (default values)
|-- manage.py # Start the app - Django default start script
|
|-- ************************************************************************
Deploy on Render
- Create a Blueprint instance
- Go to https://dashboard.render.com/blueprints this link.
- Click
New Blueprint Instance
button. - Connect your
repo
which you want to deploy. - Fill the
Service Group Name
and click onUpdate Existing Resources
button. - After that your deployment will start automatically.
At this point, the product should be LIVE.
Django Modernize - Minimal Django core provided by App Generator.