Merge pull request #68 from josevalim/patch-1
Use proper directory structure for Phoenix
This commit is contained in:
commit
f6ae36c33d
18
phoenix.md
18
phoenix.md
|
@ -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/
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue