mirror of
https://github.com/edgurgel/httparrot
synced 2025-04-05 08:12:31 -04:00
44 lines
1.2 KiB
Elixir
44 lines
1.2 KiB
Elixir
defmodule Httparrot.Mixfile do
|
|
use Mix.Project
|
|
|
|
@description """
|
|
HTTP Request & Response Server. An incomplete clone of http://httpbin.org
|
|
"""
|
|
|
|
def project do
|
|
[ app: :httparrot,
|
|
version: "1.0.1",
|
|
elixir: "~> 1.4",
|
|
name: "HTTParrot",
|
|
description: @description,
|
|
package: package(),
|
|
deps: deps() ]
|
|
end
|
|
|
|
def application do
|
|
[ applications: [ :compiler,
|
|
:syntax_tools,
|
|
:cowboy,
|
|
:exjsx,
|
|
:con_cache ],
|
|
mod: { HTTParrot, [] },
|
|
env: [ http_port: 8080, ssl: true, https_port: 8433,
|
|
unix_socket: true, socket_path: "httparrot.sock"] ]
|
|
end
|
|
|
|
defp deps do
|
|
[ {:cowboy, "~> 1.1.2"},
|
|
{:exjsx, "~> 3.0 or ~> 4.0"},
|
|
{:con_cache, "~> 0.12.0"},
|
|
{:ex_doc, ">= 0.0.0", only: :dev},
|
|
{:meck, "~> 0.8.2", only: :test } ]
|
|
end
|
|
|
|
defp package do
|
|
[ maintainers: ["Eduardo Gurgel Pinho"],
|
|
licenses: ["MIT"],
|
|
links: %{ "Github" => "https://github.com/edgurgel/httparrot",
|
|
"HTTParrot" => "http://httparrot.herokuapp.com",
|
|
"httpbin" => "http://httpbin.org" } ]
|
|
end
|
|
end
|