forked from hpyhacking/peatio
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
2 changed files
with
65 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
defaults: &defaults | ||
|
||
# sites hosts | ||
# session expire seconds | ||
# admin role account | ||
URL_HOST: peatio.dev | ||
URL_SCHEMA: http | ||
DEFAULT_MARKET: cnybtc | ||
SESSION_EXPIRE: 120 | ||
API_WHITELIST: [] | ||
ADMIN: '[email protected],[email protected]' | ||
|
||
# below settings only in production env | ||
# system notify mail settings | ||
# recaptcha settings | ||
# -------------------------------------------------------------- | ||
# in exchange some operation need validate operator is not bot. | ||
# peatio use RECAPTCHA validate this | ||
# so you need apply a new key or use we support development key | ||
# uncomment below line only development or test | ||
SMTP_DOMAIN: YOUR_SMTP_DOMAIN | ||
SMTP_ADDRESS: YOUR_SMTP_ADDRESS | ||
SMTP_USERNAME: YOUR_SMTP_USERNAME | ||
SMTP_PASSWORD: YOUR_SMTP_PASSWORD | ||
|
||
SYSTEM_MAIL_FROM: [email protected] | ||
SYSTEM_MAIL_TO: [email protected] | ||
|
||
# recaptcha settings | ||
# -------------------------------------------------------------- | ||
# in exchange some operation need validate operator is not bot. | ||
# peatio use RECAPTCHA validate this | ||
# so you need apply a new key or use we support development key | ||
# uncomment below line only development or test | ||
# | ||
RECAPTCHA_PUBLIC_KEY: 6LfxHegSAAAAAOD6mQ1PFvXgBApsHl_oO_y9EtI9 | ||
RECAPTCHA_PRIVATE_KEY: 6LfxHegSAAAAAH4M8CuhJJoH8VGYswg2HI_xY5N1 | ||
|
||
# RECAPTCHA_PUBLIC_KEY: YOUR_RECAPTCHA_PUBLIC_KEY | ||
# RECAPTCHA_PRIVATE_KEY: YOUR_RECAPTCHA_PRIVATE_KEY | ||
|
||
# pusher settings | ||
# -------------------------------------------------------------- | ||
# peatio dependence Pusher (http://pusher.com) service | ||
# you can change your key for production environment. | ||
# we support development key and secret | ||
# uncomment below line only development or test | ||
# | ||
PUSHER_APP: 65910 | ||
PUSHER_KEY: 50d404c35db92d736a57 | ||
PUSHER_SECRET: 75d6e6685209cc60cc4d | ||
|
||
# PUSHER_APP: YOUR_PUSHER_APP | ||
# PUSHER_KEY: YOUR_PUSHER_KEY | ||
# PUSHER_SECRET: YOUR_PUSHER_SECRET | ||
|
||
development: | ||
<<: *defaults | ||
|
||
test: | ||
<<: *defaults | ||
|
||
production: | ||
<<: *defaults |
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