-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dde63fc
commit bf71cde
Showing
15 changed files
with
358 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
RECAPTCHA_PRIVATE = None #replace private key text here | ||
DOMAIN = None #Replace with domain to override email domain lookup, otherwise system hostname is used | ||
EMAILFROM = "[email protected]" #Is set to None, use noreply@domain | ||
SMTPUSER = "[email protected]" #If your smtp server requires authentication define it here | ||
SMTPPASS = "8473aba8f839e68810f890613be7213e" #If your smtp server requires authentication define it here | ||
SMTPDOMAIN = 'smtp.mailgun.org' #smtp server to use for sending, default 'localhost' | ||
SMTPPORT = 25 #smtp port, default 25 | ||
SMTPSTARTTLS = True # Use starttls before SMTP login | ||
WELCOMECID = None #mailgun campaign id for welcome email stats | ||
|
||
#For wallets and session store you can switch between disk and the database | ||
LOCALDEVBYPASSDB = 0 #Set to 1 to use local storage/file system, Set to 0 to use database | ||
|
||
#Used to generate challange/response hash | ||
SERVER_SECRET = 'SoSecret!' | ||
SESSION_SECRET = 'SuperSecretSessionStuff' | ||
WEBSOCKET_SECRET = 'SocketSecret!' | ||
|
||
#used for encrypting/decrypting secure values. | ||
#NOTE: If these values change, anything previously encrypted with them will need to be updated / encrypted with the new values | ||
AESKEY='aaaaaaaabbbbbbbb' | ||
AESIV='aaaaaaaabbbbbbbb' | ||
|
||
#Donation Address Pubkey (We need the pubkey so that if an address hasn't sent a tx before we don't need the private key to get the pubkey) | ||
D_PUBKEY = '04ec31f456cc70a60793ff2033d9d2094541a5de8cac67ab1e5b1441187c6bed1601dc64c447244618268af0bd449d90d2ce71816efc69dc7921a226ed60fe926b' | ||
|
||
#Blocktrail API Key (used for lookups of utxo's) | ||
BTAPIKEY = None | ||
|
||
#Redis Connection Info | ||
REDIS_HOST='172.31.11.207' | ||
REDIS_PORT=6379 | ||
|
||
REDIS_DB=0 | ||
REDIS_ADDRSPACE="" | ||
|
||
TESTNET = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.