2016-01-06 14:36:29 +00:00
|
|
|
export RAILS_ENV='development'
|
|
|
|
|
|
|
|
export DB_USERNAME='postgres'
|
|
|
|
export DB_PASSWORD='3112'
|
|
|
|
export DB_HOST='localhost'
|
|
|
|
export DB_PORT='5432'
|
2016-01-06 14:57:01 +00:00
|
|
|
|
|
|
|
export MAILER_DEFAULT_URL='localhost:3000'
|
|
|
|
# you could also use
|
|
|
|
# export MAILER_DEFAULT_URL='metamaps.herokuapp.com'
|
|
|
|
|
|
|
|
export REALTIME_SERVER='http://localhost:5001'
|
|
|
|
# you could also use
|
|
|
|
# export REALTIME_SERVER='https://realtime.metamaps.cc'
|
|
|
|
# export REALTIME_SERVER='https://my-heroku-realtime-server.herokuapp.com',
|
|
|
|
|
2016-01-06 14:36:29 +00:00
|
|
|
|
|
|
|
# you can safely leave the rest of these blank, unless you're
|
|
|
|
# deploying an instance, in which case you'll need to set them up
|
|
|
|
|
|
|
|
export AWS_ACCESS_KEY_ID
|
|
|
|
export AWS_SECRET_ACCESS_KEY
|
|
|
|
export SSO_KEY
|
|
|
|
|
|
|
|
export SMTP_DOMAIN
|
|
|
|
export SMTP_PASSWORD
|
|
|
|
export SMTP_PORT
|
|
|
|
export SMTP_SERVER
|
|
|
|
export SMTP_USERNAME
|
|
|
|
|
|
|
|
#ruby garbage collection stuff
|
|
|
|
|
|
|
|
export RUBY_GC_TUNE=0 #set to 1 to enable GC test
|
|
|
|
export RUBY_GC_TOKEN=4f4380fc9a2857d1f008005a3eb86928
|
|
|
|
export RUBY_GC_HEAP_INIT_SLOTS=186426
|
|
|
|
export RUBY_GC_HEAP_FREE_SLOTS=559278
|
|
|
|
export RUBY_GC_HEAP_GROWTH_FACTOR=1.03
|
|
|
|
export RUBY_GC_HEAP_GROWTH_MAX_SLOTS=74570
|
|
|
|
export RUBY_GC_HEAP_OLDOBJECT_LIMIT_FACTOR=1.4
|
|
|
|
export RUBY_GC_MALLOC_LIMIT=32883406
|
|
|
|
export RUBY_GC_MALLOC_LIMIT_MAX=69055153
|
|
|
|
export RUBY_GC_MALLOC_LIMIT_GROWTH_FACTOR=1.68
|
|
|
|
export RUBY_GC_OLDMALLOC_LIMIT=32509481
|
|
|
|
export RUBY_GC_OLDMALLOC_LIMIT_MAX=68269910
|
|
|
|
export RUBY_GC_OLDMALLOC_LIMIT_GROWTH_FACTOR=1.4
|
2015-03-08 07:21:25 +00:00
|
|
|
|
|
|
|
## find the ENV currently in use in the app using :
|
|
|
|
## grep -rIso -P "(?<=ENV)(\.fetch\(|\[).[A-Z_]+.(\)|\])"
|
|
|
|
|
|
|
|
# for a uniq ordered list of env vars:
|
|
|
|
## grep -rIsoh -P "(?<=ENV)(\.fetch\(|\[).[A-Z_]+.(\)|\])" | grep -oP "[A-Z_]+" | sort -u > temp
|
|
|
|
|