Rafael Arce Nazario c1f49650e8 first commit | 4 years ago | |
---|---|---|
app | 4 years ago | |
migrations | 4 years ago | |
nginx | 4 years ago | |
screenshots | 4 years ago | |
tests | 4 years ago | |
.dockerignore | 4 years ago | |
.env | 4 years ago | |
.eslintignore | 4 years ago | |
.eslintrc | 4 years ago | |
.gitignore | 4 years ago | |
.travis.yml | 4 years ago | |
Dockerfile | 4 years ago | |
LICENSE.md | 4 years ago | |
README.md | 4 years ago | |
config.py | 4 years ago | |
database.db | 4 years ago | |
docker-compose.yml | 4 years ago | |
gunicorn.py | 4 years ago | |
package.json | 4 years ago | |
requirements-sqlite.txt | 4 years ago | |
requirements.txt | 4 years ago | |
requirements_dev.txt | 4 years ago | |
run.py | 4 years ago | |
setup.cfg | 4 years ago |
Open-Source Admin Dashboard coded in Flask Framework on top of Black Dashboard design. Features:
$ # Get the code
$ git clone https://github.com/app-generator/flask-black-dashboard.git
$ cd flask-black-dashboard
$
$ # Virtualenv modules installation (Unix based systems)
$ virtualenv --no-site-packages env
$ source env/bin/activate
$
$ # Virtualenv modules installation (Windows based systems)
$ # virtualenv --no-site-packages env
$ # .\env\Scripts\activate
$
$ # Install modules
$ # SQLIte version (no PostgreSQL)
$ pip3 install -r requirements-sqlite.txt
$
$ # OR with PostgreSQL connector
$ pip install -r requirements.txt
$
$ # Set the FLASK_APP environment variable
$ (Unix/Mac) export FLASK_APP=run.py
$ (Windows) set FLASK_APP=run.py
$ (Powershell) $env:FLASK_APP = ".\run.py"
$
$ # Set up the DEBUG environment
$ # (Unix/Mac) export FLASK_ENV=development
$ # (Windows) set FLASK_ENV=development
$ # (Powershell) $env:FLASK_ENV = "development"
$
$ # Start the application (development mode)
$ # --host=0.0.0.0 - expose the app on all network interfaces (default 127.0.0.1)
$ # --port=5000 - specify the app port (default 5000)
$ flask run --host=0.0.0.0 --port=5000
$
$ # Access the dashboard in browser: http://127.0.0.1:5000/
The application can be easily excuted in a docker container. The steps:
Get the code
$ git clone https://github.com/app-generator/flask-material-dashboard.git
$ cd flask-material-dashboard
Start the app in Docker
$ sudo docker-compose pull && sudo docker-compose build && sudo docker-compose up -d
Visit http://localhost:5000
in your browser. The app should be up & running.
Flask Dashboard Material | Flask Dashboard Argon | Flask Dashboard Black |
---|---|---|
Flask Dashboard Black - provided by AppSeed