OSDN Git Service

Regular updates
[twpd/master.git] / phoenix@1.2.md
1 ---
2 title: Phoenix 1.2
3 category: Elixir
4 layout: 2017/sheet
5 weight: -1
6 updated: 2018-03-06
7 ---
8
9 See [Phoenix](./phoenix) for a more updated cheatsheet.
10
11 ### Directory structure (Legacy 1.2)
12
13 ```
14 ├── _build
15 ├── config/
16 ├── deps/
17 ├── lib/
18 │   ├── hello/
19 │   ├── hello.ex
20 ├── node_modules/
21 ├── priv/
22 ├── test/
23 └── web/
24 │   ├── channels/
25 │   ├── controllers/
26 │   ├── models/
27 │   ├── static/
28 │   ├── templates/
29 │   ├── views/
30 │   ├── gettext.ex
31 │   ├── router.ex
32 │   ├── web.ex
33 ├── mix.exs
34 ```
35
36 This is Phoenix 1.2's structure. Phoenix 1.3 has no `models`.