Merge pull request #68 from josevalim/patch-1

Use proper directory structure for Phoenix
This commit is contained in:
Rico Sta. Cruz 2017-10-04 10:44:07 +08:00 committed by GitHub
commit f6ae36c33d
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/
``` ```