django-dashboard-light-blue
django-dashboard-light-blue copied to clipboard
Django Dashboard - Light Blue Design | AppSeed
Django Light Blue
Admin dashboard generated by AppSeed in Django Framework. Using this template you will be able to leverage lots of built-in components and thus focus on building features that set you apart from competitors rather than bulding everything from scratch. Light Blue Dashboard is a world-first transparent admin template built with Bootstrap and pure Javascript (No frameworks). It comes with a big collection of elements that will offer you multiple possibilities to create the app that best fits your needs.
Features
- UI-Ready app, SQLite Database, Django Native ORM
- Modular design, clean code-base
- Session-Based Authentication, Forms validation
- Deployment scripts: Docker, Gunicorn / Nginx
- Support via Github and Discord.
Links
- Django Light Blue - product page
- Django Light Blue - LIVE deployment
- Django Light Blue - product documentation
Want more? Go PRO!
PRO versions include Premium UI Kits, Lifetime updates and 24/7 LIVE Support (via Discord)
Django Datta PRO | Django Soft PRO | Django Volt PRO |
---|---|---|
![]() |
![]() |
![]() |
How to use it
$ # Get the code
$ git clone https://github.com/app-generator/django-dashboard-light-blue.git
$ cd django-dashboard-light-blue
$
$ # Virtualenv modules installation (Unix based systems)
$ virtualenv env
$ source env/bin/activate
$
$ # Virtualenv modules installation (Windows based systems)
$ # virtualenv env
$ # .\env\Scripts\activate
$
$ # Install modules
$ # SQLIte version
$ pip3 install -r requirements.txt
$
$ # Create tables
$ python manage.py makemigrations
$ python manage.py migrate
$
$ # Start the application (development mode)
$ python manage.py runserver # default port 8000
$
$ # Start the app - custom port
$ # python manage.py runserver 0.0.0.0:<your_port>
$
$ # Access the web app in browser: http://127.0.0.1:8000/
Deployment
The app is provided with a basic configuration to be executed in Heroku, Docker, Gunicorn, and Waitress.
Docker execution
The application can be easily executed in a docker container. The steps:
Get the code
$ git clone https://github.com/app-generator/django-dashboard-light-blue.git
$ cd django-dashboard-light-blue
Start the app in Docker
$ sudo docker-compose pull && sudo docker-compose build && sudo docker-compose up -d
Visit http://localhost:5005
in your browser. The app should be up & running.
Gunicorn
Gunicorn 'Green Unicorn' is a Python WSGI HTTP Server for UNIX.
Install using pip
$ pip install gunicorn
Start the app using gunicorn binary
$ gunicorn --bind=0.0.0.0:8001 core.wsgi:application
Serving on http://localhost:8001
Visit http://localhost:8001
in your browser. The app should be up & running.
Waitress
Waitress (Gunicorn equivalent for Windows) is meant to be a production-quality pure-Python WSGI server with very acceptable performance. It has no dependencies except ones that live in the Python standard library.
Install using pip
$ pip install waitress
Start the app using waitress-serve
$ waitress-serve --port=8001 core.wsgi:application
Serving on http://localhost:8001
Visit http://localhost:8001
in your browser. The app should be up & running.
Django Light Blue - Provided by AppSeed App Generator.