-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
50 lines (40 loc) · 1.7 KB
/
.env.example
File metadata and controls
50 lines (40 loc) · 1.7 KB
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
#-------------------------------------------------------------------------------#
# Instructions
# Use this as a starting point to creat a .env file.
# The .env should never get shared or commited to a repository
#-------------------------------------------------------------------------------#
#-------------------------------------------------------------------------------#
# Environment
# Set as either: development, staging, production
#-------------------------------------------------------------------------------#
WP_ENV=development
#-------------------------------------------------------------------------------#
# Site URL
#-------------------------------------------------------------------------------#
WP_HOME=https://project-name.lndo.site
WP_SITEURL=https://project-name.lndo.site/wp
WP_CONTENT_URL=https://project-name.lndo.site/wp-content
WP_CONTENT_DIR=/wp-content
#-------------------------------------------------------------------------------#
# Database
#-------------------------------------------------------------------------------#
DB_NAME=wordpress
DB_USER=wordpress
DB_PASSWORD=wordpress
DB_HOST=database
#-------------------------------------------------------------------------------#
# Salts
# link: https://roots.io/salts.html
#-------------------------------------------------------------------------------#
AUTH_KEY=generate
SECURE_AUTH_KEY=generate
LOGGED_IN_KEY=generate
NONCE_KEY=generate
AUTH_SALT=generate
SECURE_AUTH_SALT=generate
LOGGED_IN_SALT=generate
NONCE_SALT=generate
#-------------------------------------------------------------------------------#
# API / Secrect Keys
#-------------------------------------------------------------------------------#
SAMPLE_API='abc_123456'