mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-13 08:07:03 +02:00
11 lines
No EOL
333 B
Bash
Executable file
11 lines
No EOL
333 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Compile and collect static assets
|
|
../ops/scripts/build.sh
|
|
|
|
# Deploy to sandbox
|
|
cf target -o cisa-dotgov -s $1
|
|
cf push getgov-$1 -f ../ops/manifests/manifest-$1.yaml
|
|
|
|
# migrations need to be run manually. Developers can use this command
|
|
#cf run-task getgov-SANDBOXNAME --command 'python manage.py migrate' --name migrate |