Last active
August 29, 2015 14:27
-
-
Save gilbok/e211bff9d14d0c3418cd to your computer and use it in GitHub Desktop.
conf/alpha.conf 샘플
This file contains hidden or 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
include "application.conf" | |
play.crypto.secret = "aaaabbbccd" | |
db.default.driver=com.mysql.jdbc.Driver | |
db.default.url="jdbc:mysql://[your-db-host]/maui_alpha_developer?reconnect=true&useTimezone=true&serverTimezone=UTC&characterEncoding=utf8" | |
db.default.username=[your username] | |
db.default.password="[your password]" | |
db.authentication.driver=com.mysql.jdbc.Driver | |
db.authentication.url="jdbc:mysql://[your-auth-db-host]/maui_alpha_developer?reconnect=true&useTimezone=true&serverTimezone=UTC&characterEncoding=utf8" | |
db.authentication.username=[your username] | |
db.authentication.password="[your password]" | |
image.host = "" | |
return_url.default = "[your-devcenter-root-url]" | |
return_url.base = "[your-devcenter-host]" | |
outauth.sign_in_url_format = "[your-console-host]/users/sign_in?return_url=%s" | |
outauth.sign_up_url_format = "[your-console-host]/users/sign_up?return_url=%s" | |
outauth.sign_out_url_format = "[your-console-host]/users/sign_out?return_url=%s" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment