8 lines
101 B
Plaintext
8 lines
101 B
Plaintext
|
#!/bin/sh
|
||
|
# usage: script/bootstrap
|
||
|
#
|
||
|
# Setup dev env
|
||
|
|
||
|
gem install bundler
|
||
|
bundle install
|
||
|
npm install
|