├── .gitignore ├── README.md ├── brunch-config.js ├── config ├── config.exs ├── dev.exs ├── prod.exs └── test.exs ├── lib ├── workshop.ex └── workshop │ ├── endpoint.ex │ └── repo.ex ├── mix.exs ├── mix.lock ├── package.json ├── priv ├── gettext │ ├── en │ │ └── LC_MESSAGES │ │ │ └── errors.po │ └── errors.pot └── repo │ └── seeds.exs ├── test ├── controllers │ └── page_controller_test.exs ├── support │ ├── channel_case.ex │ ├── conn_case.ex │ └── model_case.ex ├── test_helper.exs └── views │ ├── error_view_test.exs │ ├── layout_view_test.exs │ └── page_view_test.exs └── web ├── channels └── user_socket.ex ├── controllers └── page_controller.ex ├── gettext.ex ├── router.ex ├── static ├── assets │ ├── favicon.ico │ ├── images │ │ └── phoenix.png │ └── robots.txt ├── css │ ├── app.css │ └── phoenix.css └── js │ ├── app.js │ └── socket.js ├── templates ├── layout │ └── app.html.eex ├── page │ └── index.html.eex ├── registration │ └── new.html.eex └── session │ └── new.html.eex ├── views ├── error_helpers.ex ├── error_view.ex ├── layout_view.ex └── page_view.ex └── web.ex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/README.md -------------------------------------------------------------------------------- /brunch-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/brunch-config.js -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/config/config.exs -------------------------------------------------------------------------------- /config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/config/dev.exs -------------------------------------------------------------------------------- /config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/config/prod.exs -------------------------------------------------------------------------------- /config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/config/test.exs -------------------------------------------------------------------------------- /lib/workshop.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/lib/workshop.ex -------------------------------------------------------------------------------- /lib/workshop/endpoint.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/lib/workshop/endpoint.ex -------------------------------------------------------------------------------- /lib/workshop/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/lib/workshop/repo.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/mix.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/package.json -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/errors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/priv/gettext/en/LC_MESSAGES/errors.po -------------------------------------------------------------------------------- /priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/priv/gettext/errors.pot -------------------------------------------------------------------------------- /priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/priv/repo/seeds.exs -------------------------------------------------------------------------------- /test/controllers/page_controller_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/test/controllers/page_controller_test.exs -------------------------------------------------------------------------------- /test/support/channel_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/test/support/channel_case.ex -------------------------------------------------------------------------------- /test/support/conn_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/test/support/conn_case.ex -------------------------------------------------------------------------------- /test/support/model_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/test/support/model_case.ex -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start 2 | 3 | Ecto.Adapters.SQL.Sandbox.mode(Workshop.Repo, :manual) 4 | 5 | -------------------------------------------------------------------------------- /test/views/error_view_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/test/views/error_view_test.exs -------------------------------------------------------------------------------- /test/views/layout_view_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/test/views/layout_view_test.exs -------------------------------------------------------------------------------- /test/views/page_view_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/test/views/page_view_test.exs -------------------------------------------------------------------------------- /web/channels/user_socket.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/web/channels/user_socket.ex -------------------------------------------------------------------------------- /web/controllers/page_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/web/controllers/page_controller.ex -------------------------------------------------------------------------------- /web/gettext.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/web/gettext.ex -------------------------------------------------------------------------------- /web/router.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/web/router.ex -------------------------------------------------------------------------------- /web/static/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/web/static/assets/favicon.ico -------------------------------------------------------------------------------- /web/static/assets/images/phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/web/static/assets/images/phoenix.png -------------------------------------------------------------------------------- /web/static/assets/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/web/static/assets/robots.txt -------------------------------------------------------------------------------- /web/static/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/web/static/css/app.css -------------------------------------------------------------------------------- /web/static/css/phoenix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/web/static/css/phoenix.css -------------------------------------------------------------------------------- /web/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/web/static/js/app.js -------------------------------------------------------------------------------- /web/static/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/web/static/js/socket.js -------------------------------------------------------------------------------- /web/templates/layout/app.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/web/templates/layout/app.html.eex -------------------------------------------------------------------------------- /web/templates/page/index.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/web/templates/page/index.html.eex -------------------------------------------------------------------------------- /web/templates/registration/new.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/web/templates/registration/new.html.eex -------------------------------------------------------------------------------- /web/templates/session/new.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/web/templates/session/new.html.eex -------------------------------------------------------------------------------- /web/views/error_helpers.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/web/views/error_helpers.ex -------------------------------------------------------------------------------- /web/views/error_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/web/views/error_view.ex -------------------------------------------------------------------------------- /web/views/layout_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/web/views/layout_view.ex -------------------------------------------------------------------------------- /web/views/page_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/web/views/page_view.ex -------------------------------------------------------------------------------- /web/web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrogson/taking-off-with-phoenix/HEAD/web/web.ex --------------------------------------------------------------------------------