-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2441 from cisagov/new-sandbox-ms
New sandbox ms
- Loading branch information
Showing
5 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ on: | |
- stable | ||
- staging | ||
- development | ||
- ms | ||
- ag | ||
- litterbox | ||
- hotgov | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ on: | |
options: | ||
- staging | ||
- development | ||
- ms | ||
- ag | ||
- litterbox | ||
- hotgov | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
applications: | ||
- name: getgov-ms | ||
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-ms.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-ms.app.cloud.gov | ||
services: | ||
- getgov-credentials | ||
- getgov-ms-database |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters