@@ -14,9 +14,20 @@ use Mix.Config
1414# manifest is generated by the mix phx.digest task
1515# which you typically run after static files are built.
1616config :elixir_bench , ElixirBenchWeb.Endpoint ,
17+ # Dynamically verify and set Endpoint env variables
1718 load_from_system_env: true ,
19+ http: [ ] ,
20+ server: true ,
1821 url: [ host: "elixirbench.org" , port: 80 ] ,
19- cache_static_manifest: "priv/static/cache_manifest.json"
22+ secret_key_base: "${SECRET_KEY_BASE}"
23+
24+ # Configure your database
25+ config :elixir_bench , ElixirBench.Repo ,
26+ # Dynamically verify and set Repo env variables
27+ load_from_system_env: true ,
28+ adapter: Ecto.Adapters.Postgres ,
29+ ssl: true ,
30+ pool_size: 1
2031
2132# Do not print debug messages in production
2233config :logger , level: :info
@@ -46,11 +57,5 @@ config :logger, level: :info
4657#
4758# Check `Plug.SSL` for all available options in `force_ssl`.
4859
49- config :elixir_bench , ElixirBenchWeb.Endpoint , server: true
50-
51- # Finally import the config/prod.secret.exs
52- # which should be versioned separately.
53- import_config "prod.secret.exs"
54-
5560# Set the Github client
5661config :elixir_bench , :github_client , ElixirBench.Github.ClientHTTP
0 commit comments