1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-16 12:02:48 +00:00

server - added distillery for prod builds

This commit is contained in:
2018-01-22 16:03:12 -06:00
parent 0d3a92c28d
commit 259c270c51
20 changed files with 251 additions and 64 deletions

View File

@@ -9,7 +9,7 @@ use Mix.Config
# kept out of version control and might be hard to recover
# or recreate for your teammates (or yourself later on).
config :myapp, MyAppWeb.Endpoint,
secret_key_base: "Bv6Dz/0GVoxyCC8TKpgwX/7y8NHtsSEQB49UAzNQLzuAafmkOQR0wshC/7Wwyp3/"
secret_key_base: "TODO:"
# Configure your database
config :myapp, MyApp.Repo,
@@ -23,18 +23,20 @@ config :myapp, MyApp.Repo,
# Secret key. You can use `mix guardian.gen.secret` to get one
config :myapp, MyApp.Guardian,
issuer: "myapp",
secret_key: "secret"
secret_key: "TODO:"
config :myapp,
bnet_client_id: "",
bnet_client_secret: "",
bnet_redirect_uri: "",
# admin login credentials for site
admin_accounts: [%{
# admin login credentials for site
admin_accounts: [
%{
"username" => "",
"password" => "",
"character_name" => "",
"character_avatar" => "",
"permissions" => ""
}]
},
]