aboutsummaryrefslogtreecommitdiff
path: root/config/config.exs
blob: 1b4e60ce3adba6eea7bb77995b6d8f4bd8079a02 (plain)
1
2
3
4
5
6
7
8
9
use Mix.Config

config :recaptcha,
  verify_url: "https://www.google.com/recaptcha/api/siteverify",
  timeout: 5000,
  public_key: {:system, "RECAPTCHA_PUBLIC_KEY"},
  secret: {:system, "RECAPTCHA_PRIVATE_KEY"}

import_config "#{Mix.env}.exs"