mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-09 08:42:47 +00:00
19 lines
384 B
Plaintext
19 lines
384 B
Plaintext
# secret dev configurations - api keys go here
|
|
use Mix.Config
|
|
|
|
config :myapp,
|
|
bnet_client_id: "",
|
|
bnet_client_secret: "",
|
|
bnet_redirect_uri: "https://localhost/oauth",
|
|
|
|
# admin login credentials for site
|
|
admin_accounts: [
|
|
%{
|
|
"username" => "",
|
|
"password" => "",
|
|
"character_name" => "",
|
|
"character_avatar" => "",
|
|
"permissions" => ""
|
|
},
|
|
]
|