mirror of
https://github.com/wahyd4/ocelots.git
synced 2026-08-09 04:56:21 +10:00
20 lines
550 B
Bash
Executable File
20 lines
550 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# export google oauth variables
|
|
# sign up keys from: https://code.google.com/apis/console#access
|
|
|
|
export GOOGLE_OAUTH_CLIENT_ID="replace_it"
|
|
export GOOGLE_OAUTH_CLIENT_SECRET="replace_it"
|
|
export GOOGLE_OAUTH_REDIRECT="replace_it"
|
|
|
|
# export Pusher variables
|
|
# at fisrt you need add pusher addon in heroku,and then get the access variables from pusher config page on heroku
|
|
|
|
export PUSHER_APP_ID= replace_it
|
|
export PUSHER_KEY='replace_it'
|
|
export PUSHER_SECRET='replace_it'
|
|
|
|
echo 'Install done,now please run rails server'
|
|
|
|
exec $SHELL -i
|