Skip to content

Instantly share code, notes, and snippets.

@CharlesOkwuagwu
Last active February 23, 2017 16:46
Show Gist options
  • Save CharlesOkwuagwu/1eedf9eb5e3a212b51b658be78e6abf3 to your computer and use it in GitHub Desktop.
Save CharlesOkwuagwu/1eedf9eb5e3a212b51b658be78e6abf3 to your computer and use it in GitHub Desktop.
raxx_elli ssl
use Mix.Config
config :elliraxx,
certfile: "C:/Elixir/elliraxx/config/paperless_bots.pem",
keyfile: "C:/Elixir/elliraxx/config/paperless_bots.key"
# not sure how to provide reletive paths
defmodule Elliraxx.Mixfile do
use Mix.Project
def project do
[app: :elliraxx,
version: "0.1.0",
elixir: "~> 1.4",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps()]
end
def application do
[extra_applications: [:poison, :raxx_elli],
mod: {Elliraxx.Application, []}]
end
defp deps do
[{:raxx_elli, "~> 0.1.0"}, {:elli, "~> 1.0"}, {:poison, "~> 3.1"}]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment