1
0
mirror of https://github.com/danbee/chess synced 2025-03-04 08:39:06 +00:00
chess/config/prod.exs
2018-02-20 09:25:00 -08:00

17 lines
431 B
Elixir

use Mix.Config
config :chess, ChessWeb.Endpoint,
http: [port: {:system, "PORT"}],
url: [host: "localhost", port: {:system, "PORT"}],
cache_static_manifest: "priv/static/manifest.json",
server: true,
root: "./assets",
version: Application.spec(:myapp, :vsn),
secret_key_base: "${SECRET_KEY_BASE}"
config :chess, Chess.Repo,
adapter: Ecto.Adapters.Postgres,
url: "${DATABASE_URL}",
database: "",
pool_size: 1