Skip to content

Commit

Permalink
fixup! ✨(dashboard) fix dashboard github workflow, fix doctring
Browse files Browse the repository at this point in the history
  • Loading branch information
ssorin committed Nov 15, 2024
1 parent 0098eb7 commit 1dedf37
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dashboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
defaults:
run:
working-directory: ./src/dashboard
env:
DASHBOARD_DATABASE_URL: psql://qualicharge:pass@postgresql:5432/qualicharge-dashboard
DASHBOARD_SECRET_KEY: the_secret_key
steps:
- uses: actions/checkout@v4
- name: Install pipenv
Expand All @@ -51,9 +54,6 @@ jobs:
run: pipenv run mypy dashboard apps tests
- name: Lint with DjLint
run: pipenv run djlint -
env:
DASHBOARD_DATABASE_URL: psql://qualicharge:pass@postgresql:5432/qualicharge-dashboard
DASHBOARD_SECRET_KEY: the_secret_key

test-dashboard:
needs: build-dashboard
Expand Down
2 changes: 1 addition & 1 deletion src/dashboard/apps/home/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


class HomeConfig(AppConfig):
"""homepage apps config."""
"""Home app config."""

default_auto_field = "django.db.models.BigAutoField"
name = "apps.home"

0 comments on commit 1dedf37

Please sign in to comment.