The dashboard allows operators to manage all of their data related to qualicharge.
The qualicharge dashboard is available from the url: http://localhost:8030.
./bin/manage <your_command>
Perform a Django migration (manage.py migrate) :
make migrate-dashboard-db
Create superuser.
You can connect with username: admin / password: admin. (The credentials are defined in env.d/dashboard.)
make create-dashboard-superuser
Display dashboard logs
make logs-dashboard
For each Django application, the application config label
(present in my_apps.apps.MyAppConfig) must be of type qcd_myapp
.
i.e. for the home
app:
class HomeConfig(AppConfig):
"""Home app config."""
default_auto_field = "django.db.models.BigAutoField"
name = "apps.home"
label = "qcd_home" # prefix app name with 'qcd_'
This work is released under the MIT License (see LICENSE).