Skip to content

Instantly share code, notes, and snippets.

@jason
Created September 15, 2014 19:19
Show Gist options
  • Save jason/56b1883b35906e5b6361 to your computer and use it in GitHub Desktop.
Save jason/56b1883b35906e5b6361 to your computer and use it in GitHub Desktop.
tree /web
phoenix_tutorial tree web/
web/
├── channels
├── controllers
│   └── page_controller.ex
├── i18n.ex
├── models
│   ├── jobs.ex
│   ├── queries.ex
│   └── repo.ex
├── router.ex
├── templates
│   ├── layout
│   │   └── application.html.eex
│   └── page
│   ├── error.html.eex
│   ├── index.html.eex
│   └── not_found.html.eex
├── views
│   ├── layout_view.ex
│   └── page_view.ex
└── views.ex
7 directories, 13 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment