This is a draft Django dashboard app for shared platform to test and control trading models. The layout is based on the template of the Black Django Dashboard.
Download the code
$ # Get the code
$ git clone https://github.com/kjanker/django-dashboard.git
$ cd django-dashboard
Install modules via
VENV
$ python3 -m venv .venv
$ source .venv/bin/activate
$ pip3 install -r requirements.txt
Set Up Database
$ python manage.py makemigrations
$ python manage.py migrate
Start the app
$ python manage.py runserver
At this point, the app runs at http://127.0.0.1:8000/
.