forked from AgileVentures/shf-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.development.example
63 lines (51 loc) · 2.37 KB
/
.env.development.example
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
# Example .env.development file
#
# Remove the .example extention and get the _real_ entries from a team member
# to replace those below noted with "get_this_from_a_team_member"
#----------------------------------------------------------------------------
#--------------------------------------------------
# Seeding the DB
# Note that only the admin user is seeded in RAILS_ENV=test
# and so 0 applications are created.
# Number of users to create in seeds.rb
SHF_SEED_USERS = 25
# SHF_SEED_FAKE_ADDR_CSV_FILE is the CSV file to use for seeded addresses
# if you want to use a file other than the default. If there are not enough
# addresses in the CSV file for the number of users given by <SHF_SEED_USERS>,
# additional ones will be created and geocoded.
#
# The default file is db/fake-addresses-89--2018-12-12.csv
#
# This file must be in the <project root>/db/ directory (with the seeds.rb file)
#SHF_SEED_FAKE_ADDR_CSV_FILE = 'your-filename-here.csv'
# Using an empty file will mean ALL of the addresses are created and geocoded.
# Ex:
#SHF_SEED_FAKE_ADDR_CSV_FILE = 'fake-addresses-empty.csv' # Create this empty file if you want to use this.
#--------------------------------------------------
# Show pre-release features
#
SHF_SHOW_FEATURE='yes'
# ^^ This is used to support pre-release features that are delivered to
# production but not yet made visible to users.
# Most of the time, you WILL NOT define this var as the default logic used
# in production code is to not make the specific feature visible.
# Assign the var as shown if you wish to make it visible.
# Also, if you want to toggle visibility for your tests, define (or not)
# this var in .env.test
#--------------------------------------------------
# Slack notification testing
#
# For testing notifications (e.g. backups, exceptions.)
SHF_SLACK_CHANNEL='notification-testing'
#--------------------------------------------------
# ngrok settings
#
# This host is used when running webhooks in development.
# ngrok URL that is directed to your local machine:
# <SHF_DEV_WEBHOOK_HOST> -> localhost:3000
# Ex: https://e60b3582.ngrok.io -> localhost:3000#
# See wiki for more information.
SHF_DEV_WEBHOOK_HOST = 'http://<address-from-ngrok>.ngrok.io'
# IP ngrok assigns to tunnel into your local machine
# used in config/environments/development.rb to add to whitelisted (allowed) IPs
SHF_NGROK_ASSIGNED_IP = nn.nnn.nnn.nnn