1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
defmodule@H_301_3@ BookStore@H_301_3@.Mixfile @H_301_3@@H_301_3@
do@H_301_3@
use@H_301_3@
Mix.Project@H_301_3@
[
app:@H_301_3@
:book_store@H_301_3@,
version:@H_301_3@
"0.0.1"@H_301_3@,
elixir:@H_301_3@
"~> 1.0"@H_301_3@,
elixirc_paths:@H_301_3@ [
"lib"@H_301_3@,"web"@H_301_3@],
compilers:@H_301_3@ [
:phoenix@H_301_3@] ++
Mix.@H_301_3@compilers,
# Configuration for the OTP application@H_301_3@
# Type `mix help compile.app` for more information@H_301_3@
[
mod:@H_301_3@ {
BookStore,@H_301_3@ []},
applications:@H_301_3@ [
:phoenix@H_301_3@,:cowboy@H_301_3@,:logger@H_301_3@,:postgrex@H_301_3@,:ecto@H_301_3@]]
# Specifies your project dependencies@H_301_3@
# Type `mix help deps` for examples and options@H_301_3@
[{
:phoenix@H_301_3@,"0.5.0"@H_301_3@},
{
:cowboy@H_301_3@,"~> 1.0"@H_301_3@},
{
:postgrex@H_301_3@,"~> 0.5"@H_301_3@},
{
:ecto@H_301_3@,"~> 0.2.0"@H_301_3@}]
|