-
Notifications
You must be signed in to change notification settings - Fork 0
/
env
82 lines (61 loc) · 2.52 KB
/
env
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
78
79
80
81
82
# Example .env file, values in here will work for Local Dev on Homestead
# Make a copy named '.env' to get started
# ==============================================================================
WP_URL="http://%%PROJECTNAME%%.test"
WP_ENV="dev" # Available: staging / live
# Database details
DB_USER="homestead"
DB_PASSWORD="secret"
WP_DB_NAME="%%PROJECTNAME%%"
# Set a different DB Host
# DB_HOST="localhost"
# ==============================================================================
# Debugging & Caching
# ==============================================================================
WP_DEBUG=true # show errors
TEMPLATE_DEBUG=true # this displays context variables in your views
# DISABLE_WP_CRON=false
# WP_CACHE=false
# ==============================================================================
# Plugins
# ==============================================================================
# WP Migrate DB Pro License
# WPMDB_LICENCE=""
# ==============================================================================
# Salts
# ==============================================================================
# Generate your keys here: https://wordplate.github.io/salt/
AUTH_KEY='yourrandomstring'
SECURE_AUTH_KEY='yourrandomstring'
LOGGED_IN_KEY='yourrandomstring'
NONCE_KEY='yourrandomstring'
AUTH_SALT='yourrandomstring'
SECURE_AUTH_SALT='yourrandomstring'
LOGGED_IN_SALT='yourrandomstring'
NONCE_SALT='yourrandomstring'
# ==============================================================================
# Frame Core
# ==============================================================================
# Password protect (usually for staging)
# FC_PASSWORD_PROTECT_PASSWORD="frame"
# Proxy uploads - live URL, no trailing slash
# Note: Proxy uploads don't work with Laravel Valet WordPress Driver
# FC_PROXY_UPLOADS_URL="http://%%PROJECTNAME%%.com/content/uploads"
# Set as true if we have an agreement to maintain the website (perform updates, maintenance etc).
# FC_SITE_MAINTAINED="true"
# Add the necessary Google Tag Manager embed code to the page <head> and <body>
# FC_GTM_ID=""
# This activates a content freeze so only the Frame Admin can login to the CMS.
# FC_CONTENT_FREEZE="true"
# ==============================================================================
# Mail
# ==============================================================================
# values : string (smtp details)
# default : false / empty string
# FC_SMTP_HOST=""
# FC_SMTP_USER=""
# FC_SMTP_PASSWORD=""
# FC_SMTP_PORT=""
# FC_SMTP_FROM=""
# FC_SMTP_FROM_NAME=""
#