Skip to content

Commit

Permalink
Reconcile apps.py and github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtylerwalls committed Aug 2, 2024
1 parent 23a8352 commit 04054b1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/actions/build-and-test-branch/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ runs:
echo Python packages installed
shell: bash

- name: Ensure frontend configuration files exist
run: |
python manage.py check
shell: bash

- name: Install Arches applications
uses: ./.github/actions/install-arches-applications
with:
Expand Down
5 changes: 5 additions & 0 deletions arches_lingo/apps.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
from django.apps import AppConfig

from arches.settings_utils import generate_frontend_configuration


class Arches_LingoConfig(AppConfig):
name = "arches_lingo"
verbose_name = "Arches Lingo"
is_arches_application = True

def ready(self):
generate_frontend_configuration()

0 comments on commit 04054b1

Please sign in to comment.