-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy path.env.local.example
77 lines (57 loc) · 2.55 KB
/
.env.local.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# See https://github.com/bkeepers/dotenv#what-other-env-files-can-i-use
# =============================================================================
# The API webserver
# =============================================================================
# Server port
PORT=3232
# The JWT salt, put a random strong key here
DEVISE_JWT_SECRET_KEY="a-strong-secret-key-here"
# =============================================================================
# Redis
# =============================================================================
REDIS_URL=redis://localhost:6379/1
# =============================================================================
# Database (postgreSQL)
# =============================================================================
PG_USERNAME=postgres
PG_PASSWORD=
RAILS_MAX_THREADS=5
# =============================================================================
# Cache (Memcached)
# =============================================================================
MEMCACHED_URL=memcached:11211
# =============================================================================
# If you want to setup a ngrok proxy in dev environment
# =============================================================================
NGROK_TUNNEL=false
# NGROK_CONFIG="~/.ngrok2/ngrok.yml"
# NGROK_DOMAIN=
# NGROK_INSPECT=
# =============================================================================
# DSN for sentry reporting
# =============================================================================
SENTRY_DSN=
# =============================================================================
# Skylight reporting
# =============================================================================
SKYLIGHT_AUTHENTICATION=
# =============================================================================
# Development settings
# =============================================================================
# In development mode, all the emails will be sent to this address
DEVELOPMENT_MAIL_SINK="[email protected]"
# =============================================================================
# SMTP parameters
# =============================================================================
SMTP_ADDRESS=
SMTP_PORT=
SMTP_USER_NAME=
SMTP_PASSWORD=
SMTP_DOMAIN=
SMTP_AUTHENTICATION=
SMTP_ENABLE_STARTTLS_AUTO=
# =============================================================================
# Bootstrap configuration
# =============================================================================
ADMIN_EMAIL="[email protected]"
ADMIN_PASSWORD="change-me-in-your-env-file"