1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-10-16 23:47:47 +02:00
cheatsheets/phoenix@1.2.md
Rico Sta. Cruz 511de900ba
Formatting updates (#2133)
- Update some sheets which have very long sections
- Remove `layout: 2017/sheet` (everything has the same layout now)
- Remove outdated sheets
2024-04-03 18:30:24 +11:00

674 B

title, category, weight, updated
title category weight updated
Phoenix 1.2 Elixir -1 2018-03-06

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.