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/
├── lib/
│ ├── hello/
└── hello_web/
├── channels/
├── controllers/
├── templates/
├── views/
├── router.ex
└── gettext.ex
├── hello.ex
── hello_web.ex
├── hello.ex
├── hello_web/
│ ├── channels/
│ ├── controllers/
│ ├── templates/
│ ├── views/
│ ├── router.ex
│ │ └── gettext.ex
│ └── hello_web.ex
├── priv/
└── test/
```