2015-09-17 00:38:52 -07:00
|
|
|
#!/bin/sh
|
2017-01-02 22:04:09 +01:00
|
|
|
# Resolve all dependencies that the application requires to run.
|
2015-09-17 00:38:52 -07:00
|
|
|
|
2017-01-02 22:04:09 +01:00
|
|
|
# Stop on errors
|
|
|
|
set -e
|
2015-09-17 00:38:52 -07:00
|
|
|
|
2015-09-17 00:35:26 -07:00
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
script/bootstrap_server
|
2017-01-25 02:20:18 +02:00
|
|
|
|
2017-01-25 19:21:09 +02:00
|
|
|
if command -v yarn >/dev/null ; then
|
2017-01-25 02:20:18 +02:00
|
|
|
script/bootstrap_frontend
|
|
|
|
else
|
|
|
|
echo "Frontend development not possible without Node/yarn"
|
|
|
|
fi
|