forked from creativecommons/commoners
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.sh.template
32 lines (23 loc) · 905 Bytes
/
config.sh.template
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
################################################################################
# Settings
################################################################################
export DELETEPAGES='1 2'
export WPFRONTPAGE='46'
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
export WPXMLFILE="$SRCDIR/commoners-wordpress.xml"
export GFJSONFILE="$SRCDIR/gravityforms-export.json"
export WPEMAILSFILE="$SRCDIR/commoners-emails.json"
export GFORMSKEY=''
export DBNAME='commonerstest'
export DBUSER='commonerstest'
export DBPASSWORD='commonerstestpassword'
export SITEURL='commonerstest.localhost'
export SITENAME='CC Global Network'
export ADMINNAME='admin'
export ADMINPASSWORD='password'
export ADMINEMAIL=''
export WPROOT='/var/www/commonerstest/html'
export GITROOT='/var/www/commonerstest'
export WEBUSER='www-data'
export WEBGROUP='www-data'
export WPCLI="sudo -u ${WEBUSER} wp"