-
Notifications
You must be signed in to change notification settings - Fork 11
/
.envrc-sample
35 lines (26 loc) · 966 Bytes
/
.envrc-sample
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
# instructions
# ============
# fill the values
# copy or rename it to .envrc
# place it at $HOME of root, that is /root/.envrc
# this user can be used to access the server via SSH
# if empty, a random username will be created
export ADMIN_USERNAME=
export system_admin_username=$ADMIN_USERNAME # for backward compatibility
# WP user is provided with SFTP access (at least)
# if empty, a random username will be created
export WP_USERNAME=
export WP_PASSWORD=
export DEV_USER=$WP_USERNAME # for backward compatibility
export web_developer_username=$DEV_USER # for backward compatibility
# These are used in multiple places such as crontab, logwatch, git
#export EMAIL=
#export NAME=
# To differentiate various environments... local, dev, staging.
# Default: production.
# ENV_TYPE=
export ADMIN_EMAIL=
export CERTBOT_ADMIN_EMAIL=
export CLIENT_EMAIL=
# End of predefined values
# The following are generated automatically by wp-in-a-box bootstrap script...