2021-04-21 17:58:36 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-04-29 09:06:28 +02:00
|
|
|
# Install Ruby Bundler
|
|
|
|
sudo gem install bundler:2.3.11
|
|
|
|
|
|
|
|
# Install Ruby Gems
|
|
|
|
bundle install
|
2021-04-27 10:29:10 +02:00
|
|
|
|
|
|
|
# stub keys. DO NOT use in production
|
2022-04-29 09:06:28 +02:00
|
|
|
bundle exec pod keys set notification_endpoint "<endpoint>"
|
|
|
|
bundle exec pod keys set notification_endpoint_debug "<endpoint>"
|
2021-04-27 10:29:10 +02:00
|
|
|
|
2022-04-29 09:06:28 +02:00
|
|
|
bundle exec pod install
|