mirror of
https://github.com/ansible/awx.git
synced 2024-10-31 15:21:13 +03:00
14 lines
269 B
Bash
Executable File
14 lines
269 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
|
|
export PYTHONIOENCODING=utf_8
|
|
honcho start -f "tools/docker-compose/Procfile"
|
|
fi
|