-
Notifications
You must be signed in to change notification settings - Fork 16
/
DefaultVagrantConfig.rb
62 lines (51 loc) · 1.6 KB
/
DefaultVagrantConfig.rb
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
#
# DefaultVagrantConfig.rb
#
# This file is required by the omni-devops Vagrantfile to initialize settings
#
# DO NOT CHANGE THIS FILE DIRECTLY!
#
# To Override settings copy to LocalVagrantConfig.rb and modify variables as needed
#
# Standard AWS Settings
AWS_ACCESS_KEY="setme"
AWS_SECRET_KEY="setme"
AWS_KEYPAIR_NAME="setme"
AWS_SSH_KEY_PATH="/path/to/key.pem"
AWS_DEFAULT_REGION="us-west-2"
AWS_CREDENTIAL_FILE="/path/to/rds-credentials.txt"
#
# Configure Git Repository and Branch for Omniwallet
#
OMNIWALLET_GIT_REPO="https://github.com/mastercoin-MSC/omniwallet.git"
OMNIWALLET_GIT_BRANCH="master"
#
# Configure Git Repository and Branch for OmniEngine
#
OMNIENGINE_GIT_REPO="https://github.com/mastercoin-MSC/omniEngine.git"
OMNIENGINE_GIT_BRANCH="master"
#
# Configure Git Repository and Branch for Master Core build from source
# omnicore-master is the latest (most) stable branch of Master Core with
# necessary devops additions -- currently based on mscore-0.0.8 branch.
#
MASTERCORE_GIT_REPO="https://github.com/msgilligan/mastercore.git"
MASTERCORE_GIT_BRANCH="omnicore-master"
# Standard PostgreSQL Settings
PGUSER="setme"
PGPASSWORD="setme"
PGHOST="setme"
PGPORT="5432"
# Amazon RDS DB Settings
OMNI_DB_INSTANCE="instance-id-goes-here"
OMNI_DB_SEC_GID="security group id to assign your RDS instance goes here"
# Username/Password for 'omniengine' and 'omniwww' database users
OMNIDB_ENGINE_USER="omniengine"
OMNIDB_ENGINE_PASSWORD="setme"
OMNIDB_WWW_USER="omniwww"
OMNIDB_WWW_PASSWORD="setme"
# Bitcoind/Mastercored settings
BTCRPC_CONNECT="setme"
BTCRPC_USER="setme"
BTCRPC_PASSWORD="setme"
BTCRPC_SSL="1"