29
loading...
This website collects cookies to deliver better user experience
Thanks for reading! - Content provided by App Generator.
Up-to-date dependencies
: Django 3.2.6 LTS
SQLite Database
, Django Native ORMDocker
, Gunicorn / NginxStep #1 - Clone the source code
$ git clone https://github.com/app-generator/django-dashboard-material-lite.git
$ cd django-dashboard-material-lite
Step #2 - Execute in Docker
$ docker-compose pull # download modules
$ docker-compose build # execute local set up
$ docker-compose up # start the project
Django MaterialPro Lite - Maps Page
Docker is not installed in the workstation
, we can build the product using the classic workflow: clone sources, install modules, set up the database, and start the app using Django WSGI embedded server. In order to complete this phase, make sure you have a minimal programming kit installed in the workstation and accessible via the terminal: Python3, GIT, and a modern code editor like Atom
or VsCode
.Step #1 - Clone sources
$ git clone https://github.com/app-generator/django-dashboard-material-lite.git
$ cd django-dashboard-material-lite
Step #2 - Install dependencies
$ # Virtualenv modules installation (Unix based systems)
$ virtualenv env
$ source env/bin/activate
$
$ # Install modules - SQLite Storage
$ pip3 install -r requirements.txt
Step #3 - Set up the database
$ python manage.py makemigrations
$ python manage.py migrate
Step #4 - Start app (development mode)
$ # Start the application (development mode)
$ python manage.py runserver # default port 8000
$
$ # Access the web app in browser: http://127.0.0.1:8000/
Thanks for reading! For more resources, feel free to access: