forked from activate/ActivateHub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecrets.yml.sample
70 lines (62 loc) · 2.64 KB
/
secrets.yml.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#===[ Secrets ]=========================================================
#
# This file is meant for storing secret information that is never
# published or committed to a revision control system.
#
# Do not modify this "config/secrets.yml.sample" file directly -- you
# should copy it to "config/secrets.yml" and customize it there.
#
#---[ Values ]----------------------------------------------------------
# Email address of administrator that will get exception notifications
# and requests for assistance from users:
administrator_email: '[email protected]'
# Secret code for verifying cookie session data integrity. If you change it,
# all old sessions will become invalid! Make sure the secret is at least 30
# characters and all random, no regular words or you'll be exposed to
# dictionary attacks.
session_secret: '1290832312281326461234712c347134618233441234513341132032545424856956711678856985f0575586671765c678659e7855bd58c6978856178b56e8f6'
# Name to use for storing application's session cookies, this is often a
# shortened form of your organization and application name, e.g.,
# "igniteportlandproposals", "igniteproposals", "openproposals", etc:
session_name: 'calagator'
# API key for Meetup.com, get your own from: http://www.meetup.com/meetup_api/key/
# meetup_api_key: registerNow
# Search engine to use for searching events, uncomment the line to specify that
# search engine. Defaults to 'sql'. For further information, see `INSTALL.md`.
### search_engine: sql
### search_engine: sunspot
# Configure a mapping provider
# Stamen's terrain tiles will be used by default.
mapping:
# A Google Maps API key is required to use Google's geocoding service
# as well as to display maps using their API.
#
# Get one at: https://developers.google.com/maps/documentation/javascript/tutorial#api_key
google_maps_api_key: <your google maps v3 API key>
# The tile provider to use when rendering maps with Leaflet.
# One of: leaflet, stamen, mapbox, google
# provider: stamen
#
# The tiles to use for the map, see the docs for individual Leaflet plugins.
# For stamen, this can be one of: terrain, toner, watercolor
# tiles: terrain
#
#== Examples ==
# Stamen
# (available tiles: terrain, toner, watercolor)
# provider: stamen
# tiles: watercolor
#
# MapBox Streets (use a map from your own account)
# provider: mapbox
# tiles: examples.map-9ijuk24y
#
# Google Maps
# provider: google
# tiles: ROADMAP
# google_maps_api_key: <your google maps v3 API key>
#
# OpenStreetMap
# provider: leaflet
# tiles: http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png
#===[ fin ]=============================================================