8 lines
216 B
Bash
Executable file
8 lines
216 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if ! command -v overmind &> /dev/null
|
|
then
|
|
echo "You need to install overmind. https://github.com/DarthSim/overmind#installation"
|
|
fi
|
|
|
|
OVERMIND_SKIP_ENV=true overmind start -f Procfile.dev "$@"
|