Use proper directory structure for Phoenix
This commit is contained in:
parent
c2ce93cca6
commit
d09df077da
18
phoenix.md
18
phoenix.md
|
@ -36,15 +36,15 @@ See: [Installation](https://hexdocs.pm/phoenix/installation.html) _(hexdocs.pm)_
|
||||||
├── deps/
|
├── deps/
|
||||||
├── lib/
|
├── lib/
|
||||||
│ ├── hello/
|
│ ├── hello/
|
||||||
│ └── hello_web/
|
│ ├── hello.ex
|
||||||
│ ├── channels/
|
│ ├── hello_web/
|
||||||
│ ├── controllers/
|
│ │ ├── channels/
|
||||||
│ ├── templates/
|
│ │ ├── controllers/
|
||||||
│ ├── views/
|
│ │ ├── templates/
|
||||||
│ ├── router.ex
|
│ │ ├── views/
|
||||||
│ └── gettext.ex
|
│ │ ├── router.ex
|
||||||
├── hello.ex
|
│ │ └── gettext.ex
|
||||||
├── hello_web.ex
|
│ └── hello_web.ex
|
||||||
├── priv/
|
├── priv/
|
||||||
└── test/
|
└── test/
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue