mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-03 09:43:33 +02:00
Merge pull request #2904 from cisagov/new-dev-sandbox-el
#2762: New dev sandbox el [no sandbox needed]
This commit is contained in:
commit
482b456417
6 changed files with 37 additions and 0 deletions
1
.github/workflows/deploy-manual.yaml
vendored
1
.github/workflows/deploy-manual.yaml
vendored
|
@ -14,6 +14,7 @@ on:
|
||||||
options:
|
options:
|
||||||
- ab
|
- ab
|
||||||
- backup
|
- backup
|
||||||
|
- el
|
||||||
- cb
|
- cb
|
||||||
- dk
|
- dk
|
||||||
- es
|
- es
|
||||||
|
|
1
.github/workflows/deploy-sandbox.yaml
vendored
1
.github/workflows/deploy-sandbox.yaml
vendored
|
@ -30,6 +30,7 @@ jobs:
|
||||||
|| startsWith(github.head_ref, 'ag/')
|
|| startsWith(github.head_ref, 'ag/')
|
||||||
|| startsWith(github.head_ref, 'ms/')
|
|| startsWith(github.head_ref, 'ms/')
|
||||||
|| startsWith(github.head_ref, 'ad/')
|
|| startsWith(github.head_ref, 'ad/')
|
||||||
|
|| startsWith(github.head_ref, 'el/')
|
||||||
outputs:
|
outputs:
|
||||||
environment: ${{ steps.var.outputs.environment}}
|
environment: ${{ steps.var.outputs.environment}}
|
||||||
runs-on: "ubuntu-latest"
|
runs-on: "ubuntu-latest"
|
||||||
|
|
1
.github/workflows/migrate.yaml
vendored
1
.github/workflows/migrate.yaml
vendored
|
@ -16,6 +16,7 @@ on:
|
||||||
- stable
|
- stable
|
||||||
- staging
|
- staging
|
||||||
- development
|
- development
|
||||||
|
- el
|
||||||
- ad
|
- ad
|
||||||
- ms
|
- ms
|
||||||
- ag
|
- ag
|
||||||
|
|
1
.github/workflows/reset-db.yaml
vendored
1
.github/workflows/reset-db.yaml
vendored
|
@ -16,6 +16,7 @@ on:
|
||||||
options:
|
options:
|
||||||
- staging
|
- staging
|
||||||
- development
|
- development
|
||||||
|
- el
|
||||||
- ad
|
- ad
|
||||||
- ms
|
- ms
|
||||||
- ag
|
- ag
|
||||||
|
|
32
ops/manifests/manifest-el.yaml
Normal file
32
ops/manifests/manifest-el.yaml
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
---
|
||||||
|
applications:
|
||||||
|
- name: getgov-el
|
||||||
|
buildpacks:
|
||||||
|
- python_buildpack
|
||||||
|
path: ../../src
|
||||||
|
instances: 1
|
||||||
|
memory: 512M
|
||||||
|
stack: cflinuxfs4
|
||||||
|
timeout: 180
|
||||||
|
command: ./run.sh
|
||||||
|
health-check-type: http
|
||||||
|
health-check-http-endpoint: /health
|
||||||
|
health-check-invocation-timeout: 40
|
||||||
|
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-el.app.cloud.gov
|
||||||
|
# Tell Django how much stuff to log
|
||||||
|
DJANGO_LOG_LEVEL: INFO
|
||||||
|
# default public site location
|
||||||
|
GETGOV_PUBLIC_SITE_URL: https://get.gov
|
||||||
|
# Flag to disable/enable features in prod environments
|
||||||
|
IS_PRODUCTION: False
|
||||||
|
routes:
|
||||||
|
- route: getgov-el.app.cloud.gov
|
||||||
|
services:
|
||||||
|
- getgov-credentials
|
||||||
|
- getgov-el-database
|
|
@ -723,6 +723,7 @@ ALLOWED_HOSTS = [
|
||||||
"getgov-stable.app.cloud.gov",
|
"getgov-stable.app.cloud.gov",
|
||||||
"getgov-staging.app.cloud.gov",
|
"getgov-staging.app.cloud.gov",
|
||||||
"getgov-development.app.cloud.gov",
|
"getgov-development.app.cloud.gov",
|
||||||
|
"getgov-el.app.cloud.gov",
|
||||||
"getgov-ad.app.cloud.gov",
|
"getgov-ad.app.cloud.gov",
|
||||||
"getgov-ms.app.cloud.gov",
|
"getgov-ms.app.cloud.gov",
|
||||||
"getgov-ag.app.cloud.gov",
|
"getgov-ag.app.cloud.gov",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue