forked from gilbitron/wordpress-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.production
49 lines (44 loc) · 1.59 KB
/
.env.production
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
# App
APP_ENV = "production"
WP_CONTENT_DIR = "/wp-content"
WP_CONTENT_URL = "/wp-content"
WP_HOME = "https://impressdev.ml" # Correct if in a subdirectory
WP_SITE_URL = "${WP_HOME}/wp" # This one points to our core files
# Debug and errors
WP_DEBUG = true
WP_DEBUG_LOG = true
WP_DEBUG_DISPLAY = false
APP_DISPLAY_ERRORS = "1" # 1 | 0
APP_ERROR_REPORTING = "E_ALL" # E_ALL | E_ERROR | E_WARNING | E_PARSE | E_NOTICE | 0 | -1
APP_KINT = true # Debugging tools
APP_WHOOPS = true # Laravel flavoured error reporting
# Database stuff
DB_NAME = "impressdev"
DB_USER = "impressdev"
DB_PASSWORD = "vGuvDcExnJ2d9HOB7RrlbERw"
DB_HOST = "localhost"
DB_CHARSET = "utf8"
TABLE_PREFIX = "wp_"
# Salt – https://api.wordpress.org/secret-key/1.1/salt/
AUTH_KEY = ""
SECURE_AUTH_KEY = ""
LOGGED_IN_KEY = ""
NONCE_KEY = ""
AUTH_SALT =""
SECURE_AUTH_SALT = ""
LOGGED_IN_SALT = ""
NONCE_SALT = ""
# Updates and file edit
# Read the docs before changing the following settings
AUTOMATIC_UPDATER_DISABLED = true # Disable plugin updating from UI
DISALLOW_FILE_EDIT = true # Disable file edits from UI
WP_AUTO_UPDATE_CORE = false # Disable Automatic Core Updates
DISALLOW_FILE_MODS = true # Disable Plugin update from UI
# Deploy Settings
DEP_APP_NAME = "${WP_HOME}"
DEP_REPO = "[email protected]:zreedeecom/wordpress-skeleton.git" # Repository to deploy
DEP_BRANCH = "master" # Usually master or production
DEP_KEEP_RELEASES = 5
DEP_SHARED_DIRS = "uploads" # Array like syntax. value1, value2, valueN...
DEP_SHARED_FILES = "" # Array like syntax. value1, value2, valueN...
DEP_WRITABLE_DIRS = "uploads" # Array like syntax. value1, value2, valueN...