forked from jroo/hourglass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.yml
62 lines (55 loc) · 1.41 KB
/
manifest.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
# all applications use these settings and services
#memory: 512M
instances: 1
domain: 18f.gov
# services:
# - db-hourglass-test
applications:
- name: calc-dev
stack: cflinuxfs2
path: .
timeout: 180
host: calc-dev
buildpack: https://github.com/cloudfoundry/python-buildpack.git
memory: 256M
command: bash cf.sh
env:
NEW_RELIC_ENV: development
NEW_RELIC_CONFIG_FILE: newrelic.ini
NEW_RELIC_APP_NAME: CALC (development)
NEW_RELIC_LOG: stdout
- name: calc-prod
# commenting these out so an accidental straight deploy to calc.gsa.gov doesn't happen
# should use blue-green deploy process in conjunction with calc-depoy app below
# no-hostname: true
# domain: calc.gsa.gov
host: calc-prod
stack: cflinuxfs2
path: .
timeout: 180
buildpack: https://github.com/cloudfoundry/python-buildpack.git
memory: 1G
instances: 4
env:
NEW_RELIC_ENV: production
NEW_RELIC_CONFIG_FILE: newrelic.ini
NEW_RELIC_APP_NAME: CALC (production)
NEW_RELIC_LOG: stdout
- name: calc-deploy
stack: cflinuxfs2
path: .
timeout: 180
buildpack: https://github.com/cloudfoundry/python-buildpack.git
memory: 1G
instances: 4
env:
NEW_RELIC_ENV: production
NEW_RELIC_CONFIG_FILE: newrelic.ini
NEW_RELIC_APP_NAME: CALC (production)
NEW_RELIC_LOG: stdout
# command: sh initdb.sh
#- name: hourglass-dev-load-data
# path: .
# no-route: true
# command: python manage.py load_data