diff --git a/.github/workflows/deploy-sandbox.yaml b/.github/workflows/deploy-sandbox.yaml index a08f9b7c8..8439254fd 100644 --- a/.github/workflows/deploy-sandbox.yaml +++ b/.github/workflows/deploy-sandbox.yaml @@ -23,6 +23,7 @@ jobs: deploy: if: | ${{startsWith(github.head_ref, 'ik/') + || startsWith(github.head_ref, 'jon') || startsWith(github.head_ref, 'sspj/') || startsWith(github.head_ref, 'mr/') || startsWith(github.head_ref, 'nmb/') diff --git a/.github/workflows/migrate.yaml b/.github/workflows/migrate.yaml index 142f23a52..be1a808f4 100644 --- a/.github/workflows/migrate.yaml +++ b/.github/workflows/migrate.yaml @@ -14,6 +14,7 @@ on: description: Which environment should we run migrations for? options: - stable + - jon - lmm - ik - sspj diff --git a/.github/workflows/reset-db.yaml b/.github/workflows/reset-db.yaml index 178f53dbf..bbdcb07e1 100644 --- a/.github/workflows/reset-db.yaml +++ b/.github/workflows/reset-db.yaml @@ -15,6 +15,7 @@ on: description: Which environment should we flush and re-load data for? options: - stable + - jon - lmm - ik - sspj diff --git a/ops/manifests/manifest-jon.yaml b/ops/manifests/manifest-jon.yaml new file mode 100644 index 000000000..44b530731 --- /dev/null +++ b/ops/manifests/manifest-jon.yaml @@ -0,0 +1,27 @@ +--- +applications: +- name: getgov-jon + buildpacks: + - python_buildpack + path: ../../src + instances: 1 + memory: 512M + stack: cflinuxfs3 + timeout: 180 + command: ./run.sh + health-check-type: http + health-check-http-endpoint: /health + env: + # Send stdout and stderr straight to the terminal without buffering + PYTHONUNBUFFERED: yup + # Tell Django where to find its configuration + DJANGO_SETTINGS_MODULE: registrar.config.settings + # Tell Django where it is being hosted + DJANGO_BASE_URL: https://getgov-jon.app.cloud.gov + # Tell Django how much stuff to log + DJANGO_LOG_LEVEL: INFO + routes: + - route: getgov-jon.app.cloud.gov + services: + - getgov-credentials + - getgov-jon-database diff --git a/src/registrar/config/settings.py b/src/registrar/config/settings.py index 81b9f27b8..4cbcc9aa4 100644 --- a/src/registrar/config/settings.py +++ b/src/registrar/config/settings.py @@ -512,6 +512,7 @@ SECURE_SSL_REDIRECT = True # web server configurations. ALLOWED_HOSTS = [ "getgov-stable.app.cloud.gov", + "getgov-jon.app.cloud.gov", "getgov-mr.app.cloud.gov", "getgov-sspj.app.cloud.gov", "getgov-nmb.app.cloud.gov",