cheatsheets/phoenix@1.2.md

36 lines
674 B
Markdown

---
title: Phoenix 1.2
category: Elixir
weight: -1
updated: 2018-03-06
---
See [Phoenix](./phoenix) for a more updated cheatsheet.
### Directory structure (Legacy 1.2)
```
├── _build
├── config/
├── deps/
├── lib/
│ ├── hello/
│ ├── hello.ex
├── node_modules/
├── priv/
├── test/
└── web/
│ ├── channels/
│ ├── controllers/
│ ├── models/
│ ├── static/
│ ├── templates/
│ ├── views/
│ ├── gettext.ex
│ ├── router.ex
│ ├── web.ex
├── mix.exs
```
This is Phoenix 1.2's structure. Phoenix 1.3 has no `models`.