11 lines
166 B
Bash
Executable file
11 lines
166 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -ev # exit when error
|
|
|
|
cd docs && \
|
|
bundle install && \
|
|
yarn && \
|
|
node communityHeader.js && \
|
|
bundle exec guard -i & \
|
|
npm run dev & \
|
|
wait
|