Packages

Generic graphql HTTP and websocket transports for Cowboy

Current section

Files

Jump to
cowboy_graphql rebar.config
Raw

rebar.config

% -*- mode: erlang -*-
{erl_opts, [debug_info]}.
{deps, [{cowboy, ">= 2.9.0"}]}.
{project_plugins, [
erlfmt
]}.
{profiles, [
{test, [
{deps, [
{gun, "2.0.1"},
{jsx, "3.1.0"}
]}
]}
]}.
{xref_checks, [
undefined_function_calls,
undefined_functions,
deprecated_functions_calls,
deprecated_functions
]}.
{erlfmt, [
write,
{files, [
"{src,include,test}/*.{hrl,erl}",
"src/*.app.src",
"rebar.config"
]}
]}.
{dialyzer, [
{warnings, [unknown]},
{plt_apps, all_deps}
]}.