13 lines
233 B
Bash
Executable File
13 lines
233 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# script/setup: Set up application for the first time after cloning, or set it
|
|
# back to the initial first unused state.
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
script/bootstrap
|
|
|
|
echo "==> App is now ready to go!"
|