1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-06-16 07:07:37 +02:00
cheatsheets/phoenix@1.2.md
Rico Sta. Cruz 57e0da0a1b
Merge PR #366 (@hachi8833)
* pr/366:
  Update Phoenix framework
2018-03-06 15:56:25 +08:00

693 B

title category layout weight updated
Phoenix 1.2 Elixir 2017/sheet -1 2018-01-15

See 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.