Use proper directory structure for Phoenix

This commit is contained in:
José Valim 2017-10-03 19:00:03 +02:00 committed by GitHub
parent c2ce93cca6
commit d09df077da
1 changed files with 9 additions and 9 deletions

View File

@ -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/
``` ```