mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-14 08:37:03 +02:00
10 lines
291 B
Bash
Executable file
10 lines
291 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Compile and collect static assets
|
|
../ops/scripts/build.sh
|
|
|
|
# Deploy to unstable
|
|
cf target -o cisa-getgov-prototyping -s unstable
|
|
cf push getgov-unstable -f ../ops/manifests/manifest-unstable.yaml
|
|
|
|
cf run-task getgov-unstable --command 'python manage.py migrate' --name migrate
|