2018-09-05 22:49:57 +02:00
|
|
|
#!/bin/bash
|
2018-09-12 21:20:30 +02:00
|
|
|
# Configure our bundle
|
|
|
|
|
export NOKOGIRI_USE_SYSTEM_LIBRARIES=1
|
|
|
|
|
# Install our bundle if it's outdated
|
|
|
|
|
bundle check || bundle install --jobs=3 --retry=3
|
|
|
|
|
# Setup the app if it isn't already setup
|
2018-09-05 22:49:57 +02:00
|
|
|
bundle exec rake setup:bootstrap
|
2018-09-12 21:20:30 +02:00
|
|
|
# Start the app
|
2018-09-12 21:22:50 +02:00
|
|
|
foreman start -p 3000
|