28987fc689
Signed-off-by: Thomas Citharel <tcit@tcit.fr> Debug Signed-off-by: Thomas Citharel <tcit@tcit.fr> Debug geoip fils Signed-off-by: Thomas Citharel <tcit@tcit.fr> Damn it, forgot you Signed-off-by: Thomas Citharel <tcit@tcit.fr> Debug Signed-off-by: Thomas Citharel <tcit@tcit.fr> Fix Signed-off-by: Thomas Citharel <tcit@tcit.fr> Debug Signed-off-by: Thomas Citharel <tcit@tcit.fr> Finalize Signed-off-by: Thomas Citharel <tcit@tcit.fr>
60 lines
1.8 KiB
Elixir
60 lines
1.8 KiB
Elixir
# This file is responsible for configuring your application
|
|
# and its dependencies with the aid of the Mix.Config module.
|
|
#
|
|
# This configuration file is loaded before any dependency and
|
|
# is restricted to this project.
|
|
use Mix.Config
|
|
|
|
# General application configuration
|
|
config :eventos,
|
|
ecto_repos: [Eventos.Repo]
|
|
|
|
config :eventos, :instance,
|
|
name: "Localhost",
|
|
version: "1.0.0-dev",
|
|
registrations_open: true
|
|
|
|
config :mime, :types, %{
|
|
"application/activity+json" => ["activity-json"],
|
|
"application/jrd+json" => ["jrd-json"]
|
|
}
|
|
|
|
# Configures the endpoint
|
|
config :eventos, EventosWeb.Endpoint,
|
|
url: [host: "localhost"],
|
|
secret_key_base: "1yOazsoE0Wqu4kXk3uC5gu3jDbShOimTCzyFL3OjCdBmOXMyHX87Qmf3+Tu9s0iM",
|
|
render_errors: [view: EventosWeb.ErrorView, accepts: ~w(html json)],
|
|
pubsub: [name: Eventos.PubSub,
|
|
adapter: Phoenix.PubSub.PG2],
|
|
instance: "localhost",
|
|
email_from: "noreply@localhost",
|
|
email_to: "noreply@localhost"
|
|
|
|
# Configures Elixir's Logger
|
|
config :logger, :console,
|
|
format: "$time $metadata[$level] $message\n",
|
|
metadata: [:request_id]
|
|
|
|
# Import environment specific config. This must remain at the bottom
|
|
# of this file so it overrides the configuration defined above.
|
|
import_config "#{Mix.env}.exs"
|
|
|
|
config :eventos, EventosWeb.Guardian,
|
|
issuer: "eventos",
|
|
secret_key: "ty0WM7YBE3ojvxoUQxo8AERrNpfbXnIJ82ovkPdqbUFw31T5LcK8wGjaOiReVQjo"
|
|
|
|
config :guardian, Guardian.DB,
|
|
repo: Eventos.Repo,
|
|
schema_name: "guardian_tokens", # default
|
|
token_types: ["refresh_token"], # store all token types if not set
|
|
sweep_interval: 60 # default: 60 minutes
|
|
|
|
config :geolix,
|
|
databases: [
|
|
%{
|
|
id: :city,
|
|
adapter: Geolix.Adapter.MMDB2,
|
|
source: System.get_env("GEOLITE_CITIES_PATH") || "priv/static/GeoLite2-City.mmdb"
|
|
}
|
|
]
|