Skip to content

Commit

Permalink
PGOV-400: Manifest.yml with cloud.gov environment config for deployment.
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrienne committed Feb 3, 2025
1 parent 134213f commit 5243bae
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions manifest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
version: 1
default_config: &defaults
buildpacks:
- https://github.com/cloudfoundry/apt-buildpack
- php_buildpack
disk_quota: 4G
stack: cflinuxfs4
timeout: 180
services:
- database # cf create-service aws-rds shared-mysql database
- secrets # cf create-user-provided-service secrets -p '{
# "CRON_KEY": ...
# "HASH_SALT": ...
# "ROOT_USER_NAME": ...,
# "ROOT_USER_PASS": ...,
# }'
- storage # cf create-service s3 basic-sandbox storage

applications:
- name: PGOV-CMS
<<: *defaults
memory: 512M
instances: 1
- name: PGOV-Frontend
path: ./src/frontend
memory: 256M
buildpacks:
- nodejs_buildpack

0 comments on commit 5243bae

Please sign in to comment.