mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
67474c8de1
* Not assuming GCR is being used for image hosting * Breaking out the dev environment bootstrapping from service starting
13 lines
235 B
Bash
Executable File
13 lines
235 B
Bash
Executable File
#!/bin/bash
|
|
set +x
|
|
|
|
/bootstrap_development.sh
|
|
|
|
cd /awx_devel
|
|
# Start the services
|
|
if [ -f "/awx_devel/tools/docker-compose/use_dev_supervisor.txt" ]; then
|
|
make supervisor
|
|
else
|
|
honcho start -f "tools/docker-compose/Procfile"
|
|
fi
|