Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F112587
mix.exs
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
mix.exs
View Options
defmodule
PhoenixApp.Mixfile
do
use
Mix.Project
def
project
do
[
app
:
:phoenix_app
,
version
:
"0.0.1"
,
elixir
:
"~> 1.5"
,
elixirc_paths
:
elixirc_paths
(
Mix
.
env
()),
compilers
:
[
:phoenix
]
++
Mix
.
compilers
(),
start_permanent
:
Mix
.
env
()
==
:prod
,
aliases
:
aliases
(),
deps
:
deps
()
]
end
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.
def
application
do
[
mod
:
{
PhoenixApp.Application
,
[]},
extra_applications
:
[
:logger
,
:runtime_tools
]
]
end
# Specifies which paths to compile per environment.
defp
elixirc_paths
(
:test
),
do
:
[
"lib"
,
"test/support"
]
defp
elixirc_paths
(
_
),
do
:
[
"lib"
]
defp
aliases
()
do
[
test
:
[
"ecto.create --quiet"
,
"ecto.migrate"
,
"test"
]]
end
# Specifies your project dependencies.
#
# Type `mix help deps` for examples and options.
defp
deps
do
[
{
:open_api_spex
,
path
:
"../../"
},
{
:ecto
,
"~> 2.2"
},
{
:sqlite_ecto2
,
"~> 2.2"
},
{
:phoenix
,
"~> 1.3"
},
{
:plug_cowboy
,
"~> 1.0"
},
{
:jason
,
"~> 1.0"
}
]
end
end
File Metadata
Details
Attached
Mime Type
text/x-ruby
Expires
Sat, Nov 23, 8:54 PM (23 h, 57 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
39085
Default Alt Text
mix.exs (1 KB)
Attached To
Mode
R22 open_api_spex
Attached
Detach File
Event Timeline
Log In to Comment