mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-25 02:05:10 -04:00
28 lines
1.0 KiB
Bash
Executable File
28 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
################################################################################
|
|
# NOTE: THIS FILE IS DEPRECATED.
|
|
# We are moving to using Figaro. Please see # config/application.yml.example
|
|
# instead, and help us work toward moving stuff out of here and into
|
|
# that file.
|
|
################################################################################
|
|
|
|
# This file is an empty sample file which you (i.e. Growstuff
|
|
# developers) can copy and use to store your API credentials for
|
|
# external APIs used by the Growstuff application.
|
|
|
|
# To use this file, simply copy it to credentials.sh (which is
|
|
# .gitignore'd) and then fill in whatever credentials you need. Then in
|
|
# the window where you run "rails s", first run:
|
|
#
|
|
# source credentials.sh
|
|
#
|
|
# If you then run "rails s", it will have all the environment variables
|
|
# available to it.
|
|
|
|
### CREDENTIALS ###
|
|
|
|
# generate a real secret key with 'rake secret' if you want one (you
|
|
# don't need to for your dev machine though.)
|
|
export RAILS_SECRET_TOKEN="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|