Skip to content

Instantly share code, notes, and snippets.

@j-mcnally
Created October 25, 2014 21:29
Show Gist options
  • Save j-mcnally/08e2c4806948832cdfab to your computer and use it in GitHub Desktop.
Save j-mcnally/08e2c4806948832cdfab to your computer and use it in GitHub Desktop.
Legal
use Mix.Config
config :phoenix, Struct.Router,
port: System.get_env("PORT") || 4000,
ssl: false,
host: "localhost",
github_callback: "http://localhost:4000",
cookies: true,
session_key: "_struct_key",
session_secret: "",
debug_errors: true
config :phoenix, :exq,
host: '127.0.0.1',
port: 6379,
namespace: 'structtv',
queues: [{"encoding", 1}, {"mail", 5}]
config :phoenix, :code_reloader,
enabled: true
config :logger, :console,
level: :debug
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment