├── .idea ├── inspectionProfiles │ └── profiles_settings.xml ├── vcs.xml └── workspace.xml ├── 1.2 ├── hello_phoenix │ ├── .gitignore │ ├── .idea │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── README.md │ ├── brunch-config.js │ ├── config │ │ ├── config.exs │ │ ├── dev.exs │ │ ├── prod.exs │ │ └── test.exs │ ├── hellophoenix.iml │ ├── lib │ │ ├── hello_phoenix.ex │ │ └── hello_phoenix │ │ │ ├── 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 │ │ ├── hello_controller.ex │ │ └── 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 │ │ ├── hello │ │ │ └── world.html.eex │ │ ├── layout │ │ │ └── app.html.eex │ │ └── page │ │ │ └── index.html.eex │ │ ├── views │ │ ├── error_helpers.ex │ │ ├── error_view.ex │ │ ├── hello_view.ex │ │ ├── layout_view.ex │ │ └── page_view.ex │ │ └── web.ex ├── phoenix_api │ ├── .gitignore │ ├── README.md │ ├── brunch-config.js │ ├── config │ │ ├── config.exs │ │ ├── dev.exs │ │ ├── prod.exs │ │ └── test.exs │ ├── lib │ │ ├── app │ │ │ └── mailer.ex │ │ ├── email.ex │ │ ├── event_manager.ex │ │ ├── phoenix_api.ex │ │ └── phoenix_api │ │ │ ├── endpoint.ex │ │ │ ├── guardian_serializer.ex │ │ │ └── repo.ex │ ├── mix.exs │ ├── mix.lock │ ├── package.json │ ├── priv │ │ ├── gettext │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── errors.po │ │ │ └── errors.pot │ │ └── repo │ │ │ ├── migrations │ │ │ ├── 20170329084501_create_user.exs │ │ │ ├── 20170330092436_guardian_db.exs │ │ │ ├── 20170404160006_create_product.exs │ │ │ ├── 20170408160730_create_order.exs │ │ │ └── 20170408162310_create_order_product.exs │ │ │ └── seeds.exs │ ├── test │ │ ├── controllers │ │ │ ├── order_controller_test.exs │ │ │ ├── page_controller_test.exs │ │ │ ├── product_controller_test.exs │ │ │ └── user_controller_test.exs │ │ ├── models │ │ │ ├── order_product_test.exs │ │ │ ├── order_test.exs │ │ │ ├── product_test.exs │ │ │ └── user_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 │ │ ├── api │ │ │ ├── v1 │ │ │ │ ├── order_controller.ex │ │ │ │ ├── product_controller.ex │ │ │ │ ├── session_controller.ex │ │ │ │ └── user_controller.ex │ │ │ └── v2 │ │ │ │ └── user_controller.ex │ │ ├── helpers │ │ │ └── auth_helper.ex │ │ └── page_controller.ex │ │ ├── gettext.ex │ │ ├── models │ │ ├── order.ex │ │ ├── order_product.ex │ │ ├── product.ex │ │ └── user.ex │ │ ├── router.ex │ │ ├── static │ │ ├── assets │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ │ └── phoenix.png │ │ │ └── robots.txt │ │ ├── css │ │ │ ├── app.css │ │ │ └── phoenix.css │ │ └── js │ │ │ ├── app.js │ │ │ └── socket.js │ │ ├── templates │ │ ├── email │ │ │ ├── order_confirmation.html.eex │ │ │ └── order_confirmation.text.eex │ │ ├── layout │ │ │ ├── app.html.eex │ │ │ ├── email.html.eex │ │ │ └── email.text.eex │ │ └── page │ │ │ └── index.html.eex │ │ ├── views │ │ ├── api │ │ │ └── v1 │ │ │ │ ├── order_view.ex │ │ │ │ ├── product_view.ex │ │ │ │ └── user_view.ex │ │ ├── changeset_view.ex │ │ ├── email_view.ex │ │ ├── error_helpers.ex │ │ ├── error_view.ex │ │ ├── layout_view.ex │ │ └── page_view.ex │ │ └── web.ex └── rumbl │ ├── .gitignore │ ├── .idea │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml │ ├── Procfile │ ├── README.md │ ├── brunch-config.js │ ├── config │ ├── config.exs │ ├── dev.exs │ ├── prod.exs │ └── test.exs │ ├── lib │ ├── rumbl.ex │ └── rumbl │ │ ├── endpoint.ex │ │ ├── permalink.ex │ │ └── repo.ex │ ├── mix.exs │ ├── mix.lock │ ├── package.json │ ├── priv │ ├── gettext │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── errors.po │ │ └── errors.pot │ └── repo │ │ ├── migrations │ │ ├── 20170311160815_create_user.exs │ │ ├── 20170315145258_create_video.exs │ │ ├── 20170315164017_create_category.exs │ │ ├── 20170315164425_add_category_id_to_video.exs │ │ ├── 20170317151613_add_slug_to_video.exs │ │ └── 20170319063441_create_annotation.exs │ │ └── seeds.exs │ ├── rumbl.iml │ ├── test │ ├── channels │ │ ├── user_socket_test.exs │ │ └── video_channel_test.exs │ ├── controllers │ │ ├── auth_test.exs │ │ ├── page_controller_test.exs │ │ └── video_controller_test.exs │ ├── models │ │ ├── annotation_test.exs │ │ ├── category_repo_test.exs │ │ ├── category_test.exs │ │ ├── user_repo_test.exs │ │ ├── user_test.exs │ │ └── video_test.exs │ ├── support │ │ ├── channel_case.ex │ │ ├── conn_case.ex │ │ ├── model_case.ex │ │ └── test_helpers.ex │ ├── test_helper.exs │ └── views │ │ ├── error_view_test.exs │ │ ├── layout_view_test.exs │ │ ├── page_view_test.exs │ │ └── video_view_test.exs │ └── web │ ├── channels │ ├── user_socket.ex │ └── video_channel.ex │ ├── controllers │ ├── page_controller.ex │ ├── session_controller.ex │ ├── user_controller.ex │ ├── video_controller.ex │ └── watch_controller.ex │ ├── gettext.ex │ ├── models │ ├── annotation.ex │ ├── category.ex │ ├── user.ex │ └── video.ex │ ├── plugs │ └── auth.ex │ ├── router.ex │ ├── static │ ├── assets │ │ ├── favicon.ico │ │ ├── images │ │ │ └── phoenix.png │ │ └── robots.txt │ ├── css │ │ ├── app.css │ │ ├── phoenix.css │ │ └── video.css │ └── js │ │ ├── app.js │ │ ├── player.js │ │ ├── socket.js │ │ └── video.js │ ├── templates │ ├── layout │ │ └── app.html.eex │ ├── page │ │ └── index.html.eex │ ├── session │ │ └── new.html.eex │ ├── user │ │ ├── index.html.eex │ │ ├── new.html.eex │ │ ├── show.html.eex │ │ └── user.html.eex │ ├── video │ │ ├── edit.html.eex │ │ ├── form.html.eex │ │ ├── index.html.eex │ │ ├── new.html.eex │ │ └── show.html.eex │ └── watch │ │ └── show.html.eex │ ├── views │ ├── annotation_view.ex │ ├── error_helpers.ex │ ├── error_view.ex │ ├── layout_view.ex │ ├── page_view.ex │ ├── session_view.ex │ ├── user_view.ex │ ├── video_view.ex │ └── watch_view.ex │ └── web.ex ├── 1.3 ├── blog_app_gql │ ├── .gitignore │ ├── .idea │ │ ├── emacs.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── README.md │ ├── blogappgql.iml │ ├── config │ │ ├── config.exs │ │ ├── dev.exs │ │ ├── prod.exs │ │ └── test.exs │ ├── lib │ │ └── blog_app_gql │ │ │ ├── accounts │ │ │ ├── accounts.ex │ │ │ ├── user.ex │ │ │ └── user_resolver.ex │ │ │ ├── application.ex │ │ │ ├── blog │ │ │ ├── blog.ex │ │ │ ├── post.ex │ │ │ └── post_resolver.ex │ │ │ ├── repo.ex │ │ │ └── web │ │ │ ├── channels │ │ │ └── user_socket.ex │ │ │ ├── controllers │ │ │ └── fallback_controller.ex │ │ │ ├── endpoint.ex │ │ │ ├── gettext.ex │ │ │ ├── helpers │ │ │ ├── auth_helper.ex │ │ │ └── guardian.ex │ │ │ ├── plugs │ │ │ └── context.ex │ │ │ ├── router.ex │ │ │ ├── schema │ │ │ ├── schema.ex │ │ │ └── types.ex │ │ │ ├── views │ │ │ ├── changeset_view.ex │ │ │ ├── error_helpers.ex │ │ │ ├── error_view.ex │ │ │ ├── post_view.ex │ │ │ └── user_view.ex │ │ │ └── web.ex │ ├── mix.exs │ ├── mix.lock │ ├── priv │ │ ├── gettext │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── errors.po │ │ │ └── errors.pot │ │ └── repo │ │ │ ├── migrations │ │ │ ├── 20170721130834_create_accounts_user.exs │ │ │ ├── 20170721131014_create_blog_post.exs │ │ │ ├── 20180226131604_add_password_hash_to_accounts_users.exs │ │ │ └── 20180302122758_add_token_to_accounts_users.exs │ │ │ └── seeds.exs │ └── test │ │ ├── blog_app_gql │ │ ├── accounts │ │ │ └── accounts_test.exs │ │ ├── blog │ │ │ └── blog_test.exs │ │ └── web │ │ │ ├── controllers │ │ │ ├── post_controller_test.exs │ │ │ └── user_controller_test.exs │ │ │ └── views │ │ │ └── error_view_test.exs │ │ ├── support │ │ ├── channel_case.ex │ │ ├── conn_case.ex │ │ └── data_case.ex │ │ └── test_helper.exs ├── cms_context │ ├── .exguard.exs │ ├── .formatter.exs │ ├── .gitignore │ ├── README.md │ ├── assets │ │ ├── brunch-config.js │ │ ├── css │ │ │ ├── app.css │ │ │ └── phoenix.css │ │ ├── js │ │ │ ├── app.js │ │ │ └── socket.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── static │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ └── phoenix.png │ │ │ └── robots.txt │ ├── config │ │ ├── config.exs │ │ ├── dev.exs │ │ ├── prod.exs │ │ └── test.exs │ ├── lib │ │ ├── cms_context.ex │ │ ├── cms_context │ │ │ ├── accounts │ │ │ │ ├── accounts.ex │ │ │ │ ├── credential.ex │ │ │ │ └── user.ex │ │ │ ├── application.ex │ │ │ ├── cms │ │ │ │ ├── author.ex │ │ │ │ ├── cms.ex │ │ │ │ └── page.ex │ │ │ └── repo.ex │ │ ├── cms_context_web.ex │ │ └── cms_context_web │ │ │ ├── channels │ │ │ └── user_socket.ex │ │ │ ├── controllers │ │ │ ├── cms │ │ │ │ └── page_controller.ex │ │ │ ├── page_controller.ex │ │ │ ├── session_controller.ex │ │ │ └── user_controller.ex │ │ │ ├── endpoint.ex │ │ │ ├── gettext.ex │ │ │ ├── plug │ │ │ ├── authentication.ex │ │ │ └── authorization.ex │ │ │ ├── router.ex │ │ │ ├── templates │ │ │ ├── cms │ │ │ │ └── page │ │ │ │ │ ├── edit.html.eex │ │ │ │ │ ├── form.html.eex │ │ │ │ │ ├── index.html.eex │ │ │ │ │ ├── new.html.eex │ │ │ │ │ └── show.html.eex │ │ │ ├── layout │ │ │ │ └── app.html.eex │ │ │ ├── page │ │ │ │ └── index.html.eex │ │ │ ├── session │ │ │ │ └── new.html.eex │ │ │ └── user │ │ │ │ ├── edit.html.eex │ │ │ │ ├── form.html.eex │ │ │ │ ├── index.html.eex │ │ │ │ ├── new.html.eex │ │ │ │ └── show.html.eex │ │ │ └── views │ │ │ ├── cms │ │ │ └── page_view.ex │ │ │ ├── error_helpers.ex │ │ │ ├── error_view.ex │ │ │ ├── layout_view.ex │ │ │ ├── page_view.ex │ │ │ ├── session_view.ex │ │ │ └── user_view.ex │ ├── mix.exs │ ├── mix.lock │ ├── priv │ │ ├── gettext │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── errors.po │ │ │ └── errors.pot │ │ └── repo │ │ │ ├── migrations │ │ │ ├── 20180124082834_create_users.exs │ │ │ ├── 20180124084827_create_credentials.exs │ │ │ ├── 20180125054540_create_pages.exs │ │ │ ├── 20180125055847_create_authors.exs │ │ │ └── 20180125060138_add_author_id_to_pages.exs │ │ │ └── seeds.exs │ └── test │ │ ├── cms_context │ │ ├── accounts │ │ │ └── accounts_test.exs │ │ └── cms │ │ │ └── cms_test.exs │ │ ├── cms_context_web │ │ ├── controllers │ │ │ ├── cms │ │ │ │ └── page_controller_test.exs │ │ │ ├── page_controller_test.exs │ │ │ └── user_controller_test.exs │ │ └── views │ │ │ ├── error_view_test.exs │ │ │ ├── layout_view_test.exs │ │ │ └── page_view_test.exs │ │ ├── support │ │ ├── channel_case.ex │ │ ├── conn_case.ex │ │ └── data_case.ex │ │ └── test_helper.exs ├── hello_world │ ├── .gitignore │ ├── .idea │ │ ├── emacs.xml │ │ ├── hello_world.iml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── README.md │ ├── assets │ │ ├── brunch-config.js │ │ ├── css │ │ │ ├── app.css │ │ │ └── phoenix.css │ │ ├── js │ │ │ ├── app.js │ │ │ └── socket.js │ │ ├── package.json │ │ └── static │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ └── phoenix.png │ │ │ └── robots.txt │ ├── boxfile.yml │ ├── config │ │ ├── config.exs │ │ ├── dev.exs │ │ ├── prod.exs │ │ └── test.exs │ ├── lib │ │ └── hello_world │ │ │ ├── application.ex │ │ │ ├── repo.ex │ │ │ └── web │ │ │ ├── channels │ │ │ └── user_socket.ex │ │ │ ├── controllers │ │ │ ├── hello_controller.ex │ │ │ └── page_controller.ex │ │ │ ├── endpoint.ex │ │ │ ├── gettext.ex │ │ │ ├── router.ex │ │ │ ├── templates │ │ │ ├── hello │ │ │ │ └── world.html.eex │ │ │ ├── layout │ │ │ │ └── app.html.eex │ │ │ └── page │ │ │ │ └── index.html.eex │ │ │ ├── views │ │ │ ├── error_helpers.ex │ │ │ ├── error_view.ex │ │ │ ├── hello_view.ex │ │ │ ├── layout_view.ex │ │ │ └── page_view.ex │ │ │ └── web.ex │ ├── mix.exs │ ├── mix.lock │ ├── priv │ │ ├── gettext │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── errors.po │ │ │ └── errors.pot │ │ └── repo │ │ │ └── seeds.exs │ └── test │ │ ├── hello_world │ │ └── web │ │ │ ├── controllers │ │ │ └── page_controller_test.exs │ │ │ └── views │ │ │ ├── error_view_test.exs │ │ │ ├── layout_view_test.exs │ │ │ └── page_view_test.exs │ │ ├── support │ │ ├── channel_case.ex │ │ ├── conn_case.ex │ │ └── data_case.ex │ │ └── test_helper.exs ├── phoenix_api │ ├── .gitignore │ ├── .idea │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── .sobelow │ ├── README.md │ ├── config │ │ ├── config.exs │ │ ├── dev.exs │ │ ├── prod.exs │ │ ├── scout_apm.exs │ │ └── test.exs │ ├── lib │ │ └── phoenix_api │ │ │ ├── accounts │ │ │ ├── accounts.ex │ │ │ └── user.ex │ │ │ ├── application.ex │ │ │ ├── mailer.ex │ │ │ ├── repo.ex │ │ │ ├── sales │ │ │ ├── order.ex │ │ │ ├── order_product.ex │ │ │ ├── product.ex │ │ │ └── sales.ex │ │ │ └── web │ │ │ ├── channels │ │ │ └── user_socket.ex │ │ │ ├── controllers │ │ │ ├── fallback_controller.ex │ │ │ ├── order_controller.ex │ │ │ ├── product_controller.ex │ │ │ ├── session_controller.ex │ │ │ └── user_controller.ex │ │ │ ├── endpoint.ex │ │ │ ├── eventmanager │ │ │ ├── event_dispatcher.ex │ │ │ └── event_handler.ex │ │ │ ├── gettext.ex │ │ │ ├── helpers │ │ │ ├── auth_helper.ex │ │ │ ├── email.ex │ │ │ └── guardian_serializer.ex │ │ │ ├── plugs │ │ │ └── versionary │ │ │ │ ├── ensure_version.ex │ │ │ │ ├── error_handler.ex │ │ │ │ ├── handler.ex │ │ │ │ ├── phoenix_error_handler.ex │ │ │ │ └── verify_header.ex │ │ │ ├── router.ex │ │ │ ├── templates │ │ │ ├── email │ │ │ │ ├── order_confirmation.html.eex │ │ │ │ └── order_confirmation.text.eex │ │ │ └── layout │ │ │ │ ├── email.html.eex │ │ │ │ └── email.text.eex │ │ │ ├── views │ │ │ ├── changeset_view.ex │ │ │ ├── email_view.ex │ │ │ ├── error_helpers.ex │ │ │ ├── error_view.ex │ │ │ ├── layout_view.ex │ │ │ ├── order_view.ex │ │ │ ├── product_view.ex │ │ │ └── user_view.ex │ │ │ └── web.ex │ ├── mix.exs │ ├── mix.lock │ ├── phoenixapi.iml │ ├── priv │ │ ├── gettext │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── errors.po │ │ │ └── errors.pot │ │ └── repo │ │ │ ├── migrations │ │ │ ├── 20170701153520_create_accounts_user.exs │ │ │ ├── 20170702082740_create_guardian_db.exs │ │ │ ├── 20170708031326_create_sales_product.exs │ │ │ ├── 20170709141913_create_sales_order.exs │ │ │ └── 20170709151300_create_sales_orders_products.exs │ │ │ └── seeds.exs │ └── test │ │ ├── phoenix_api │ │ ├── accounts │ │ │ └── accounts_test.exs │ │ ├── sales │ │ │ └── sales_test.exs │ │ └── web │ │ │ ├── controllers │ │ │ ├── order_controller_test.exs │ │ │ ├── product_controller_test.exs │ │ │ └── user_controller_test.exs │ │ │ └── views │ │ │ └── error_view_test.exs │ │ ├── support │ │ ├── channel_case.ex │ │ ├── conn_case.ex │ │ └── data_case.ex │ │ └── test_helper.exs ├── rumbl │ ├── .exguard.exs │ ├── .formatter.exs │ ├── .gitignore │ ├── .sobelow │ ├── README.md │ ├── assets │ │ ├── brunch-config.js │ │ ├── css │ │ │ ├── app.css │ │ │ ├── phoenix.css │ │ │ └── video.css │ │ ├── js │ │ │ ├── app.js │ │ │ ├── player.js │ │ │ ├── socket.js │ │ │ └── video.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── static │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ └── phoenix.png │ │ │ └── robots.txt │ ├── config │ │ ├── config.exs │ │ ├── dev.exs │ │ ├── prod.exs │ │ └── test.exs │ ├── lib │ │ ├── rumbl.ex │ │ ├── rumbl │ │ │ ├── accounts │ │ │ │ ├── accounts.ex │ │ │ │ ├── auth │ │ │ │ │ ├── auth.ex │ │ │ │ │ ├── auth_access_pipeline.ex │ │ │ │ │ ├── auth_error_handler.ex │ │ │ │ │ └── guardian.ex │ │ │ │ └── user.ex │ │ │ ├── application.ex │ │ │ ├── repo.ex │ │ │ └── videos │ │ │ │ ├── annotation.ex │ │ │ │ ├── category.ex │ │ │ │ ├── permalink.ex │ │ │ │ ├── video.ex │ │ │ │ └── videos.ex │ │ ├── rumbl_web.ex │ │ └── rumbl_web │ │ │ ├── channels │ │ │ ├── user_socket.ex │ │ │ └── video_channel.ex │ │ │ ├── controllers │ │ │ ├── page_controller.ex │ │ │ ├── session_controller.ex │ │ │ ├── user_controller.ex │ │ │ ├── video_controller.ex │ │ │ └── watch_controller.ex │ │ │ ├── endpoint.ex │ │ │ ├── gettext.ex │ │ │ ├── router.ex │ │ │ ├── templates │ │ │ ├── layout │ │ │ │ └── app.html.eex │ │ │ ├── page │ │ │ │ └── index.html.eex │ │ │ ├── session │ │ │ │ └── new.html.eex │ │ │ ├── user │ │ │ │ ├── form.html.eex │ │ │ │ ├── index.html.eex │ │ │ │ ├── new.html.eex │ │ │ │ └── show.html.eex │ │ │ ├── video │ │ │ │ ├── edit.html.eex │ │ │ │ ├── edit_form.html.eex │ │ │ │ ├── form.html.eex │ │ │ │ ├── index.html.eex │ │ │ │ ├── new.html.eex │ │ │ │ └── show.html.eex │ │ │ └── watch │ │ │ │ └── show.html.eex │ │ │ └── views │ │ │ ├── annotation_view.ex │ │ │ ├── error_helpers.ex │ │ │ ├── error_view.ex │ │ │ ├── layout_view.ex │ │ │ ├── page_view.ex │ │ │ ├── session_view.ex │ │ │ ├── user_view.ex │ │ │ ├── video_view.ex │ │ │ └── watch_view.ex │ ├── mix.exs │ ├── mix.lock │ ├── priv │ │ ├── gettext │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── errors.po │ │ │ └── errors.pot │ │ └── repo │ │ │ ├── migrations │ │ │ ├── 20180128105515_create_users.exs │ │ │ ├── 20180130034727_create_videos.exs │ │ │ ├── 20180130053926_create_categories.exs │ │ │ ├── 20180130054132_add_category_id_to_video.exs │ │ │ ├── 20180131093206_add_slug_to_video.exs │ │ │ └── 20180203032321_create_annotations.exs │ │ │ └── seeds.exs │ └── test │ │ ├── rumbl │ │ ├── accounts │ │ │ └── accounts_test.exs │ │ └── videos │ │ │ └── videos_test.exs │ │ ├── rumbl_web │ │ ├── acceptance │ │ │ └── hound_test.ex │ │ ├── channels │ │ │ ├── user_socket_test.exs │ │ │ └── video_channel_test.exs │ │ ├── controllers │ │ │ ├── page_controller_test.exs │ │ │ ├── session_controller_test.exs │ │ │ ├── user_controller_test.exs │ │ │ └── video_controller_test.exs │ │ ├── integration │ │ │ ├── page_integration_test.exs │ │ │ └── user_integration_test.exs │ │ └── views │ │ │ ├── error_view_test.exs │ │ │ ├── layout_view_test.exs │ │ │ ├── page_view_test.exs │ │ │ └── video_view_test.exs │ │ ├── support │ │ ├── channel_case.ex │ │ ├── conn_case.ex │ │ ├── data_case.ex │ │ ├── integration_case.ex │ │ └── test_helpers.ex │ │ └── test_helper.exs └── umbrella_docker │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── apps │ ├── greeter │ │ ├── .gitignore │ │ ├── README.md │ │ ├── config │ │ │ └── config.exs │ │ ├── lib │ │ │ └── greeter.ex │ │ ├── mix.exs │ │ └── test │ │ │ ├── greeter_test.exs │ │ │ └── test_helper.exs │ └── phoenix_app │ │ ├── .gitignore │ │ ├── README.md │ │ ├── assets │ │ ├── brunch-config.js │ │ ├── css │ │ │ ├── app.css │ │ │ └── phoenix.css │ │ ├── js │ │ │ ├── app.js │ │ │ └── socket.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── static │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ └── cultivate.jpg │ │ │ └── robots.txt │ │ ├── config │ │ ├── config.exs │ │ ├── dev.exs │ │ ├── prod.exs │ │ └── test.exs │ │ ├── lib │ │ ├── phoenix_app.ex │ │ ├── phoenix_app │ │ │ └── application.ex │ │ ├── phoenix_app_web.ex │ │ └── phoenix_app_web │ │ │ ├── channels │ │ │ ├── greet_channel.ex │ │ │ └── user_socket.ex │ │ │ ├── controllers │ │ │ └── page_controller.ex │ │ │ ├── endpoint.ex │ │ │ ├── gettext.ex │ │ │ ├── router.ex │ │ │ ├── templates │ │ │ ├── layout │ │ │ │ └── app.html.eex │ │ │ └── page │ │ │ │ └── index.html.eex │ │ │ └── views │ │ │ ├── error_helpers.ex │ │ │ ├── error_view.ex │ │ │ ├── layout_view.ex │ │ │ └── page_view.ex │ │ ├── mix.exs │ │ ├── priv │ │ └── gettext │ │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── errors.po │ │ │ └── errors.pot │ │ └── test │ │ ├── phoenix_app_web │ │ ├── controllers │ │ │ └── page_controller_test.exs │ │ └── views │ │ │ ├── error_view_test.exs │ │ │ ├── layout_view_test.exs │ │ │ └── page_view_test.exs │ │ ├── support │ │ ├── channel_case.ex │ │ └── conn_case.ex │ │ └── test_helper.exs │ ├── config │ └── config.exs │ ├── docker-compose.yml │ ├── mix.exs │ ├── mix.lock │ ├── rel │ └── config.exs │ └── run.sh ├── 1.4 ├── github_liveview │ ├── .formatter.exs │ ├── .gitignore │ ├── .idea │ │ └── github_liveview.iml │ ├── README.md │ ├── assets │ │ ├── .babelrc │ │ ├── css │ │ │ ├── app.css │ │ │ └── phoenix.css │ │ ├── js │ │ │ ├── app.js │ │ │ └── socket.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── static │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ │ └── phoenix.png │ │ │ └── robots.txt │ │ └── webpack.config.js │ ├── config │ │ ├── config.exs │ │ ├── dev.exs │ │ ├── prod.exs │ │ └── test.exs │ ├── lib │ │ ├── github_liveview.ex │ │ ├── github_liveview │ │ │ └── application.ex │ │ ├── github_liveview_web.ex │ │ └── github_liveview_web │ │ │ ├── channels │ │ │ └── user_socket.ex │ │ │ ├── controllers │ │ │ └── page_controller.ex │ │ │ ├── endpoint.ex │ │ │ ├── gettext.ex │ │ │ ├── live │ │ │ └── github_deploy_view.ex │ │ │ ├── router.ex │ │ │ ├── templates │ │ │ ├── layout │ │ │ │ └── app.html.eex │ │ │ └── page │ │ │ │ └── index.html.eex │ │ │ └── views │ │ │ ├── error_helpers.ex │ │ │ ├── error_view.ex │ │ │ ├── layout_view.ex │ │ │ └── page_view.ex │ ├── mix.exs │ ├── mix.lock │ ├── priv │ │ └── gettext │ │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── errors.po │ │ │ └── errors.pot │ └── test │ │ ├── github_liveview_web │ │ ├── controllers │ │ │ └── page_controller_test.exs │ │ └── views │ │ │ ├── error_view_test.exs │ │ │ ├── layout_view_test.exs │ │ │ └── page_view_test.exs │ │ ├── support │ │ ├── channel_case.ex │ │ └── conn_case.ex │ │ └── test_helper.exs ├── hello │ ├── .formatter.exs │ ├── .gitignore │ ├── .idea │ │ ├── encodings.xml │ │ ├── libraries │ │ │ ├── benchee.xml │ │ │ ├── benchee_json.xml │ │ │ ├── connection.xml │ │ │ ├── coverex.xml │ │ │ ├── cowboy.xml │ │ │ ├── cowlib.xml │ │ │ ├── db_connection.xml │ │ │ ├── decimal.xml │ │ │ ├── dialyxir.xml │ │ │ ├── dialyze.xml │ │ │ ├── earmark.xml │ │ │ ├── ecto.xml │ │ │ ├── ecto_sql.xml │ │ │ ├── erlang_pmp.xml │ │ │ ├── ex_doc.xml │ │ │ ├── file_system.xml │ │ │ ├── gettext.xml │ │ │ ├── hackney.xml │ │ │ ├── inch_ex.xml │ │ │ ├── jason.xml │ │ │ ├── kadabra.xml │ │ │ ├── mariaex.xml │ │ │ ├── mime.xml │ │ │ ├── phoenix.xml │ │ │ ├── phoenix_ecto.xml │ │ │ ├── phoenix_html.xml │ │ │ ├── phoenix_live_reload.xml │ │ │ ├── phoenix_pubsub.xml │ │ │ ├── plug.xml │ │ │ ├── plug_cowboy.xml │ │ │ ├── plug_crypto.xml │ │ │ ├── poison.xml │ │ │ ├── postgrex.xml │ │ │ ├── ranch.xml │ │ │ ├── telemetry.xml │ │ │ └── websocket_client.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── README.md │ ├── assets │ │ ├── .babelrc │ │ ├── css │ │ │ ├── app.css │ │ │ └── phoenix.css │ │ ├── js │ │ │ ├── app.js │ │ │ └── socket.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── static │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ │ └── phoenix.png │ │ │ └── robots.txt │ │ └── webpack.config.js │ ├── config │ │ ├── config.exs │ │ ├── dev.exs │ │ ├── prod.exs │ │ └── test.exs │ ├── hello.iml │ ├── lib │ │ ├── hello.ex │ │ ├── hello │ │ │ ├── application.ex │ │ │ └── repo.ex │ │ ├── hello_web.ex │ │ └── hello_web │ │ │ ├── channels │ │ │ └── user_socket.ex │ │ │ ├── controllers │ │ │ ├── hello_controller.ex │ │ │ └── page_controller.ex │ │ │ ├── endpoint.ex │ │ │ ├── gettext.ex │ │ │ ├── router.ex │ │ │ ├── templates │ │ │ ├── hello │ │ │ │ └── world.html.eex │ │ │ ├── layout │ │ │ │ └── app.html.eex │ │ │ └── page │ │ │ │ └── index.html.eex │ │ │ └── views │ │ │ ├── error_helpers.ex │ │ │ ├── error_view.ex │ │ │ ├── hello_view.ex │ │ │ ├── layout_view.ex │ │ │ └── page_view.ex │ ├── mix.exs │ ├── mix.lock │ ├── priv │ │ ├── gettext │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── errors.po │ │ │ └── errors.pot │ │ └── repo │ │ │ ├── migrations │ │ │ └── .formatter.exs │ │ │ └── seeds.exs │ └── test │ │ ├── hello_web │ │ ├── controllers │ │ │ └── page_controller_test.exs │ │ └── views │ │ │ ├── error_view_test.exs │ │ │ ├── layout_view_test.exs │ │ │ └── page_view_test.exs │ │ ├── support │ │ ├── channel_case.ex │ │ ├── conn_case.ex │ │ └── data_case.ex │ │ └── test_helper.exs ├── hello_sockets │ ├── .formatter.exs │ ├── .gitignore │ ├── README.md │ ├── assets │ │ ├── .babelrc │ │ ├── css │ │ │ ├── app.css │ │ │ └── phoenix.css │ │ ├── js │ │ │ ├── app.js │ │ │ └── socket.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── static │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ │ └── phoenix.png │ │ │ └── robots.txt │ │ └── webpack.config.js │ ├── config │ │ ├── config.exs │ │ ├── dev.exs │ │ ├── prod.exs │ │ └── test.exs │ ├── lib │ │ ├── hello_sockets.ex │ │ ├── hello_sockets │ │ │ └── application.ex │ │ ├── hello_sockets_web.ex │ │ └── hello_sockets_web │ │ │ ├── channels │ │ │ ├── ping_channel.ex │ │ │ ├── user_socket.ex │ │ │ └── wildcard_channel.ex │ │ │ ├── controllers │ │ │ └── page_controller.ex │ │ │ ├── endpoint.ex │ │ │ ├── gettext.ex │ │ │ ├── router.ex │ │ │ ├── templates │ │ │ ├── layout │ │ │ │ └── app.html.eex │ │ │ └── page │ │ │ │ └── index.html.eex │ │ │ └── views │ │ │ ├── error_helpers.ex │ │ │ ├── error_view.ex │ │ │ ├── layout_view.ex │ │ │ └── page_view.ex │ ├── mix.exs │ ├── mix.lock │ ├── priv │ │ └── gettext │ │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── errors.po │ │ │ └── errors.pot │ └── test │ │ ├── hello_sockets_web │ │ ├── controllers │ │ │ └── page_controller_test.exs │ │ └── views │ │ │ ├── error_view_test.exs │ │ │ ├── layout_view_test.exs │ │ │ └── page_view_test.exs │ │ ├── support │ │ ├── channel_case.ex │ │ └── conn_case.ex │ │ └── test_helper.exs ├── islands_engine │ ├── .formatter.exs │ ├── .gitignore │ ├── .idea │ │ └── islands_engine.iml │ ├── README.md │ ├── config │ │ └── config.exs │ ├── lib │ │ ├── islands_engine.ex │ │ └── islands_engine │ │ │ ├── application.ex │ │ │ ├── board.ex │ │ │ ├── coordinate.ex │ │ │ ├── game.ex │ │ │ ├── game_supervisor.ex │ │ │ ├── guesses.ex │ │ │ ├── island.ex │ │ │ └── rules.ex │ ├── mix.exs │ └── test │ │ ├── islands_engine_test.exs │ │ └── test_helper.exs ├── islands_interface │ ├── .formatter.exs │ ├── .gitignore │ ├── .idea │ │ └── islands_interface.iml │ ├── README.md │ ├── assets │ │ ├── .babelrc │ │ ├── css │ │ │ ├── app.css │ │ │ └── phoenix.css │ │ ├── js │ │ │ ├── app.js │ │ │ └── socket.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── static │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ │ └── phoenix.png │ │ │ └── robots.txt │ │ └── webpack.config.js │ ├── config │ │ ├── config.exs │ │ ├── dev.exs │ │ ├── prod.exs │ │ └── test.exs │ ├── lib │ │ ├── islands_interface.ex │ │ ├── islands_interface │ │ │ └── application.ex │ │ ├── islands_interface_web.ex │ │ └── islands_interface_web │ │ │ ├── channels │ │ │ ├── game_channel.ex │ │ │ ├── presence.ex │ │ │ └── user_socket.ex │ │ │ ├── controllers │ │ │ └── page_controller.ex │ │ │ ├── endpoint.ex │ │ │ ├── gettext.ex │ │ │ ├── router.ex │ │ │ ├── templates │ │ │ ├── layout │ │ │ │ └── app.html.eex │ │ │ └── page │ │ │ │ └── index.html.eex │ │ │ └── views │ │ │ ├── error_helpers.ex │ │ │ ├── error_view.ex │ │ │ ├── layout_view.ex │ │ │ └── page_view.ex │ ├── mix.exs │ ├── mix.lock │ ├── priv │ │ └── gettext │ │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── errors.po │ │ │ └── errors.pot │ └── test │ │ ├── islands_interface_web │ │ ├── controllers │ │ │ └── page_controller_test.exs │ │ └── views │ │ │ ├── error_view_test.exs │ │ │ ├── layout_view_test.exs │ │ │ └── page_view_test.exs │ │ ├── support │ │ ├── channel_case.ex │ │ └── conn_case.ex │ │ └── test_helper.exs ├── minitwitter │ ├── .formatter.exs │ ├── .gitignore │ ├── .idea │ │ └── minitwitter.iml │ ├── README.md │ ├── assets │ │ ├── .babelrc │ │ ├── css │ │ │ ├── app.css │ │ │ └── phoenix.css │ │ ├── js │ │ │ ├── app.js │ │ │ └── socket.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── static │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ │ └── phoenix.png │ │ │ └── robots.txt │ │ └── webpack.config.js │ ├── config │ │ ├── config.exs │ │ ├── dev.exs │ │ ├── prod.exs │ │ └── test.exs │ ├── lib │ │ ├── minitwitter.ex │ │ ├── minitwitter │ │ │ ├── accounts │ │ │ │ ├── accounts.ex │ │ │ │ ├── relationship.ex │ │ │ │ └── user.ex │ │ │ ├── application.ex │ │ │ ├── mailer.ex │ │ │ ├── microposts │ │ │ │ ├── microposts.ex │ │ │ │ └── post.ex │ │ │ └── repo.ex │ │ ├── minitwitter_web.ex │ │ └── minitwitter_web │ │ │ ├── channels │ │ │ └── user_socket.ex │ │ │ ├── controllers │ │ │ ├── account_activation_controller.ex │ │ │ ├── error_controller.ex │ │ │ ├── follower_controller.ex │ │ │ ├── page_controller.ex │ │ │ ├── password_reset_controller.ex │ │ │ ├── plugs │ │ │ │ └── auth.ex │ │ │ ├── post_controller.ex │ │ │ ├── relationship_controller.ex │ │ │ ├── session_controller.ex │ │ │ └── user_controller.ex │ │ │ ├── endpoint.ex │ │ │ ├── gettext.ex │ │ │ ├── helpers │ │ │ └── email.ex │ │ │ ├── router.ex │ │ │ ├── templates │ │ │ ├── email │ │ │ │ ├── account_activation.html.eex │ │ │ │ ├── account_activation.text.eex │ │ │ │ ├── password_reset.html.eex │ │ │ │ └── password_reset.text.eex │ │ │ ├── layout │ │ │ │ ├── app.html.eex │ │ │ │ ├── email.html.eex │ │ │ │ └── email.text.eex │ │ │ ├── page │ │ │ │ ├── contact.html.eex │ │ │ │ └── home.html.eex │ │ │ ├── password_reset │ │ │ │ ├── edit.html.eex │ │ │ │ └── new.html.eex │ │ │ ├── post │ │ │ │ └── form.html.eex │ │ │ ├── session │ │ │ │ └── new.html.eex │ │ │ └── user │ │ │ │ ├── edit.html.eex │ │ │ │ ├── form.html.eex │ │ │ │ ├── index.html.eex │ │ │ │ ├── new.html.eex │ │ │ │ ├── show.html.eex │ │ │ │ ├── show_follow.html.eex │ │ │ │ └── users.html.eex │ │ │ ├── uploaders │ │ │ └── image_uploader.ex │ │ │ └── views │ │ │ ├── email_view.ex │ │ │ ├── error_helpers.ex │ │ │ ├── error_view.ex │ │ │ ├── layout_view.ex │ │ │ ├── page_view.ex │ │ │ ├── password_reset_view.ex │ │ │ ├── post_view.ex │ │ │ ├── relationship_view.ex │ │ │ ├── session_view.ex │ │ │ └── user_view.ex │ ├── mix.exs │ ├── mix.lock │ ├── priv │ │ ├── gettext │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── errors.po │ │ │ └── errors.pot │ │ └── repo │ │ │ ├── migrations │ │ │ ├── .formatter.exs │ │ │ ├── 20190112101755_create_users.exs │ │ │ ├── 20190112130634_add_password_to_user.exs │ │ │ ├── 20190113055524_add_remember_hash_to_users.exs │ │ │ ├── 20190114074346_add_admin_to_users.exs │ │ │ ├── 20190115081858_add_activation_to_users.exs │ │ │ ├── 20190116093536_add_reset_to_users.exs │ │ │ ├── 20190117092959_create_posts.exs │ │ │ ├── 20190118095816_add_picture_to_posts.exs │ │ │ └── 20190119054258_create_relationships.exs │ │ │ └── seeds.exs │ └── test │ │ ├── minitwitter │ │ ├── accounts │ │ │ └── accounts_test.exs │ │ └── microposts │ │ │ └── microposts_test.exs │ │ ├── minitwitter_web │ │ ├── controllers │ │ │ ├── page_controller_test.exs │ │ │ ├── post_controller_test.exs │ │ │ ├── session_controller_test.exs │ │ │ └── user_controller_test.exs │ │ └── views │ │ │ ├── error_view_test.exs │ │ │ ├── layout_view_test.exs │ │ │ └── page_view_test.exs │ │ ├── support │ │ ├── channel_case.ex │ │ ├── conn_case.ex │ │ └── data_case.ex │ │ └── test_helper.exs ├── phoenix_ml │ ├── .formatter.exs │ ├── .gitignore │ ├── .idea │ │ └── phoenix_ml.iml │ ├── README.md │ ├── assets │ │ ├── .babelrc │ │ ├── css │ │ │ ├── app.css │ │ │ └── phoenix.css │ │ ├── js │ │ │ ├── app.js │ │ │ └── socket.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── static │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ │ └── phoenix.png │ │ │ └── robots.txt │ │ └── webpack.config.js │ ├── config │ │ ├── config.exs │ │ ├── dev.exs │ │ ├── prod.exs │ │ └── test.exs │ ├── lib │ │ ├── phoenix_ml.ex │ │ ├── phoenix_ml │ │ │ ├── application.ex │ │ │ ├── helpers │ │ │ │ ├── model_predictor.ex │ │ │ │ └── python_helper.ex │ │ │ ├── model │ │ │ │ ├── .ipynb_checkpoints │ │ │ │ │ └── iris-analysis-checkpoint.ipynb │ │ │ │ ├── classifier.pkl │ │ │ │ ├── classifier.py │ │ │ │ ├── classifier.pyc │ │ │ │ ├── iris-analysis.ipynb │ │ │ │ └── iris-data.csv │ │ │ └── protobuf │ │ │ │ ├── iris.pb.ex │ │ │ │ ├── iris.proto │ │ │ │ ├── iris_pb2.py │ │ │ │ └── iris_pb2.pyc │ │ ├── phoenix_ml_web.ex │ │ └── phoenix_ml_web │ │ │ ├── channels │ │ │ └── user_socket.ex │ │ │ ├── controllers │ │ │ └── page_controller.ex │ │ │ ├── endpoint.ex │ │ │ ├── gettext.ex │ │ │ ├── router.ex │ │ │ ├── templates │ │ │ ├── layout │ │ │ │ └── app.html.eex │ │ │ └── page │ │ │ │ ├── form.html.eex │ │ │ │ └── index.html.eex │ │ │ └── views │ │ │ ├── error_helpers.ex │ │ │ ├── error_view.ex │ │ │ ├── layout_view.ex │ │ │ └── page_view.ex │ ├── mix.exs │ ├── mix.lock │ ├── priv │ │ └── gettext │ │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── errors.po │ │ │ └── errors.pot │ └── test │ │ ├── phoenix_ml_web │ │ ├── controllers │ │ │ └── page_controller_test.exs │ │ └── views │ │ │ ├── error_view_test.exs │ │ │ ├── layout_view_test.exs │ │ │ └── page_view_test.exs │ │ ├── support │ │ ├── channel_case.ex │ │ └── conn_case.ex │ │ └── test_helper.exs ├── plateslate │ ├── assets │ │ ├── .babelrc │ │ ├── css │ │ │ ├── app.css │ │ │ └── phoenix.css │ │ ├── js │ │ │ ├── app.js │ │ │ └── socket.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── static │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ │ └── phoenix.png │ │ │ └── robots.txt │ │ └── webpack.config.js │ ├── config │ │ ├── config.exs │ │ ├── dev.exs │ │ ├── prod.exs │ │ └── test.exs │ ├── lib │ │ ├── plateslate.ex │ │ ├── plateslate │ │ │ ├── application.ex │ │ │ ├── dev │ │ │ │ └── support │ │ │ │ │ └── seed.ex │ │ │ ├── menu │ │ │ │ ├── category.ex │ │ │ │ ├── item.ex │ │ │ │ ├── item_tag.ex │ │ │ │ └── menu.ex │ │ │ └── repo.ex │ │ ├── plateslate_web.ex │ │ └── plateslate_web │ │ │ ├── channels │ │ │ └── user_socket.ex │ │ │ ├── controllers │ │ │ └── page_controller.ex │ │ │ ├── endpoint.ex │ │ │ ├── gettext.ex │ │ │ ├── resolvers │ │ │ └── menu.ex │ │ │ ├── router.ex │ │ │ ├── schema.ex │ │ │ ├── templates │ │ │ ├── layout │ │ │ │ └── app.html.eex │ │ │ └── page │ │ │ │ └── index.html.eex │ │ │ └── views │ │ │ ├── error_helpers.ex │ │ │ ├── error_view.ex │ │ │ ├── layout_view.ex │ │ │ └── page_view.ex │ ├── priv │ │ ├── gettext │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── errors.po │ │ │ └── errors.pot │ │ └── repo │ │ │ ├── migrations │ │ │ ├── .formatter.exs │ │ │ ├── 20190217100409_create_categories.exs │ │ │ ├── 20190217100559_create_items.exs │ │ │ ├── 20190217100926_create_items_tags.exs │ │ │ └── 20190217103756_create_menu_tag_taggings.exs │ │ │ └── seeds.exs │ └── test │ │ ├── plateslate_web │ │ ├── controllers │ │ │ └── page_controller_test.exs │ │ ├── schema │ │ │ └── menu_items_test.exs │ │ └── views │ │ │ ├── error_view_test.exs │ │ │ ├── layout_view_test.exs │ │ │ └── page_view_test.exs │ │ ├── support │ │ ├── channel_case.ex │ │ ├── conn_case.ex │ │ └── data_case.ex │ │ └── test_helper.exs ├── rumbl │ ├── .elixir_ls │ │ ├── build │ │ │ └── test │ │ │ │ └── lib │ │ │ │ ├── bcrypt_elixir │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.fetch │ │ │ │ │ └── compile.xref │ │ │ │ ├── ebin │ │ │ │ │ ├── Elixir.Bcrypt.Base.beam │ │ │ │ │ ├── Elixir.Bcrypt.Stats.beam │ │ │ │ │ ├── Elixir.Bcrypt.beam │ │ │ │ │ └── bcrypt_elixir.app │ │ │ │ └── priv │ │ │ │ ├── comeonin │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.fetch │ │ │ │ │ └── compile.xref │ │ │ │ └── ebin │ │ │ │ │ ├── Elixir.Comeonin.Bcrypt.beam │ │ │ │ │ ├── Elixir.Comeonin.Pbkdf2.beam │ │ │ │ │ ├── Elixir.Comeonin.beam │ │ │ │ │ └── comeonin.app │ │ │ │ ├── connection │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.fetch │ │ │ │ │ └── compile.xref │ │ │ │ └── ebin │ │ │ │ │ ├── Elixir.Connection.beam │ │ │ │ │ └── connection.app │ │ │ │ ├── cowboy │ │ │ │ ├── .mix │ │ │ │ │ └── compile.fetch │ │ │ │ ├── ebin │ │ │ │ └── mix.rebar.config │ │ │ │ ├── cowlib │ │ │ │ ├── .mix │ │ │ │ │ └── compile.fetch │ │ │ │ ├── ebin │ │ │ │ ├── include │ │ │ │ └── mix.rebar.config │ │ │ │ ├── db_connection │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.fetch │ │ │ │ │ └── compile.xref │ │ │ │ └── ebin │ │ │ │ │ ├── Elixir.DBConnection.App.beam │ │ │ │ │ ├── Elixir.DBConnection.Backoff.beam │ │ │ │ │ ├── Elixir.DBConnection.Connection.beam │ │ │ │ │ ├── Elixir.DBConnection.ConnectionError.beam │ │ │ │ │ ├── Elixir.DBConnection.ConnectionPool.Pool.beam │ │ │ │ │ ├── Elixir.DBConnection.ConnectionPool.PoolSupervisor.beam │ │ │ │ │ ├── Elixir.DBConnection.ConnectionPool.beam │ │ │ │ │ ├── Elixir.DBConnection.EncodeError.beam │ │ │ │ │ ├── Elixir.DBConnection.Holder.beam │ │ │ │ │ ├── Elixir.DBConnection.LogEntry.beam │ │ │ │ │ ├── Elixir.DBConnection.Ownership.Manager.beam │ │ │ │ │ ├── Elixir.DBConnection.Ownership.Proxy.beam │ │ │ │ │ ├── Elixir.DBConnection.Ownership.ProxySupervisor.beam │ │ │ │ │ ├── Elixir.DBConnection.Ownership.beam │ │ │ │ │ ├── Elixir.DBConnection.OwnershipError.beam │ │ │ │ │ ├── Elixir.DBConnection.PrepareStream.beam │ │ │ │ │ ├── Elixir.DBConnection.Query.beam │ │ │ │ │ ├── Elixir.DBConnection.Stream.beam │ │ │ │ │ ├── Elixir.DBConnection.Task.beam │ │ │ │ │ ├── Elixir.DBConnection.TransactionError.beam │ │ │ │ │ ├── Elixir.DBConnection.Watcher.beam │ │ │ │ │ ├── Elixir.DBConnection.beam │ │ │ │ │ ├── Elixir.Enumerable.DBConnection.PrepareStream.beam │ │ │ │ │ ├── Elixir.Enumerable.DBConnection.Stream.beam │ │ │ │ │ └── db_connection.app │ │ │ │ ├── decimal │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.fetch │ │ │ │ │ └── compile.xref │ │ │ │ └── ebin │ │ │ │ │ ├── Elixir.Decimal.Context.beam │ │ │ │ │ ├── Elixir.Decimal.Error.beam │ │ │ │ │ ├── Elixir.Decimal.beam │ │ │ │ │ ├── Elixir.Inspect.Decimal.beam │ │ │ │ │ ├── Elixir.String.Chars.Decimal.beam │ │ │ │ │ └── decimal.app │ │ │ │ ├── ecto │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.fetch │ │ │ │ │ └── compile.xref │ │ │ │ └── ebin │ │ │ │ │ ├── Elixir.Ecto.Adapter.Queryable.beam │ │ │ │ │ ├── Elixir.Ecto.Adapter.Schema.beam │ │ │ │ │ ├── Elixir.Ecto.Adapter.Storage.beam │ │ │ │ │ ├── Elixir.Ecto.Adapter.Transaction.beam │ │ │ │ │ ├── Elixir.Ecto.Adapter.beam │ │ │ │ │ ├── Elixir.Ecto.Application.beam │ │ │ │ │ ├── Elixir.Ecto.Association.BelongsTo.beam │ │ │ │ │ ├── Elixir.Ecto.Association.Has.beam │ │ │ │ │ ├── Elixir.Ecto.Association.HasThrough.beam │ │ │ │ │ ├── Elixir.Ecto.Association.ManyToMany.beam │ │ │ │ │ ├── Elixir.Ecto.Association.NotLoaded.beam │ │ │ │ │ ├── Elixir.Ecto.Association.beam │ │ │ │ │ ├── Elixir.Ecto.CastError.beam │ │ │ │ │ ├── Elixir.Ecto.ChangeError.beam │ │ │ │ │ ├── Elixir.Ecto.Changeset.Relation.beam │ │ │ │ │ ├── Elixir.Ecto.Changeset.beam │ │ │ │ │ ├── Elixir.Ecto.ConstraintError.beam │ │ │ │ │ ├── Elixir.Ecto.Embedded.beam │ │ │ │ │ ├── Elixir.Ecto.InvalidChangesetError.beam │ │ │ │ │ ├── Elixir.Ecto.InvalidURLError.beam │ │ │ │ │ ├── Elixir.Ecto.LogEntry.beam │ │ │ │ │ ├── Elixir.Ecto.MigrationError.beam │ │ │ │ │ ├── Elixir.Ecto.Multi.beam │ │ │ │ │ ├── Elixir.Ecto.MultiplePrimaryKeyError.beam │ │ │ │ │ ├── Elixir.Ecto.MultipleResultsError.beam │ │ │ │ │ ├── Elixir.Ecto.NoPrimaryKeyFieldError.beam │ │ │ │ │ ├── Elixir.Ecto.NoPrimaryKeyValueError.beam │ │ │ │ │ ├── Elixir.Ecto.NoResultsError.beam │ │ │ │ │ ├── Elixir.Ecto.Query.API.beam │ │ │ │ │ ├── Elixir.Ecto.Query.BooleanExpr.beam │ │ │ │ │ ├── Elixir.Ecto.Query.Builder.Combination.beam │ │ │ │ │ ├── Elixir.Ecto.Query.Builder.Distinct.beam │ │ │ │ │ ├── Elixir.Ecto.Query.Builder.Dynamic.beam │ │ │ │ │ ├── Elixir.Ecto.Query.Builder.Filter.beam │ │ │ │ │ ├── Elixir.Ecto.Query.Builder.From.beam │ │ │ │ │ ├── Elixir.Ecto.Query.Builder.GroupBy.beam │ │ │ │ │ ├── Elixir.Ecto.Query.Builder.Join.beam │ │ │ │ │ ├── Elixir.Ecto.Query.Builder.LimitOffset.beam │ │ │ │ │ ├── Elixir.Ecto.Query.Builder.Lock.beam │ │ │ │ │ ├── Elixir.Ecto.Query.Builder.OrderBy.beam │ │ │ │ │ ├── Elixir.Ecto.Query.Builder.Preload.beam │ │ │ │ │ ├── Elixir.Ecto.Query.Builder.Select.beam │ │ │ │ │ ├── Elixir.Ecto.Query.Builder.Update.beam │ │ │ │ │ ├── Elixir.Ecto.Query.Builder.Windows.beam │ │ │ │ │ ├── Elixir.Ecto.Query.Builder.beam │ │ │ │ │ ├── Elixir.Ecto.Query.CastError.beam │ │ │ │ │ ├── Elixir.Ecto.Query.CompileError.beam │ │ │ │ │ ├── Elixir.Ecto.Query.DynamicExpr.beam │ │ │ │ │ ├── Elixir.Ecto.Query.FromExpr.beam │ │ │ │ │ ├── Elixir.Ecto.Query.JoinExpr.beam │ │ │ │ │ ├── Elixir.Ecto.Query.Planner.beam │ │ │ │ │ ├── Elixir.Ecto.Query.QueryExpr.beam │ │ │ │ │ ├── Elixir.Ecto.Query.SelectExpr.beam │ │ │ │ │ ├── Elixir.Ecto.Query.Tagged.beam │ │ │ │ │ ├── Elixir.Ecto.Query.WindowAPI.beam │ │ │ │ │ ├── Elixir.Ecto.Query.beam │ │ │ │ │ ├── Elixir.Ecto.QueryError.beam │ │ │ │ │ ├── Elixir.Ecto.Queryable.Atom.beam │ │ │ │ │ ├── Elixir.Ecto.Queryable.BitString.beam │ │ │ │ │ ├── Elixir.Ecto.Queryable.Ecto.Query.beam │ │ │ │ │ ├── Elixir.Ecto.Queryable.Ecto.SubQuery.beam │ │ │ │ │ ├── Elixir.Ecto.Queryable.Tuple.beam │ │ │ │ │ ├── Elixir.Ecto.Queryable.beam │ │ │ │ │ ├── Elixir.Ecto.Repo.Assoc.beam │ │ │ │ │ ├── Elixir.Ecto.Repo.Preloader.beam │ │ │ │ │ ├── Elixir.Ecto.Repo.Queryable.beam │ │ │ │ │ ├── Elixir.Ecto.Repo.Registry.beam │ │ │ │ │ ├── Elixir.Ecto.Repo.Schema.beam │ │ │ │ │ ├── Elixir.Ecto.Repo.Supervisor.beam │ │ │ │ │ ├── Elixir.Ecto.Repo.Transaction.beam │ │ │ │ │ ├── Elixir.Ecto.Repo.beam │ │ │ │ │ ├── Elixir.Ecto.Schema.Loader.beam │ │ │ │ │ ├── Elixir.Ecto.Schema.Metadata.beam │ │ │ │ │ ├── Elixir.Ecto.Schema.beam │ │ │ │ │ ├── Elixir.Ecto.StaleEntryError.beam │ │ │ │ │ ├── Elixir.Ecto.SubQuery.beam │ │ │ │ │ ├── Elixir.Ecto.SubQueryError.beam │ │ │ │ │ ├── Elixir.Ecto.Type.beam │ │ │ │ │ ├── Elixir.Ecto.UUID.beam │ │ │ │ │ ├── Elixir.Ecto.beam │ │ │ │ │ ├── Elixir.Inspect.Ecto.Association.NotLoaded.beam │ │ │ │ │ ├── Elixir.Inspect.Ecto.Changeset.beam │ │ │ │ │ ├── Elixir.Inspect.Ecto.Query.DynamicExpr.beam │ │ │ │ │ ├── Elixir.Inspect.Ecto.Query.beam │ │ │ │ │ ├── Elixir.Inspect.Ecto.Schema.Metadata.beam │ │ │ │ │ ├── Elixir.Jason.Encoder.Ecto.Association.NotLoaded.beam │ │ │ │ │ ├── Elixir.Jason.Encoder.Ecto.Schema.Metadata.beam │ │ │ │ │ ├── Elixir.Mix.Ecto.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Ecto.Create.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Ecto.Drop.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Ecto.Gen.Repo.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Ecto.beam │ │ │ │ │ └── ecto.app │ │ │ │ ├── ecto_sql │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.fetch │ │ │ │ │ └── compile.xref │ │ │ │ └── ebin │ │ │ │ │ ├── Elixir.Collectable.Ecto.Adapters.SQL.Stream.beam │ │ │ │ │ ├── Elixir.Ecto.Adapter.Migration.beam │ │ │ │ │ ├── Elixir.Ecto.Adapter.Structure.beam │ │ │ │ │ ├── Elixir.Ecto.Adapters.MySQL.Connection.beam │ │ │ │ │ ├── Elixir.Ecto.Adapters.MySQL.beam │ │ │ │ │ ├── Elixir.Ecto.Adapters.Postgres.beam │ │ │ │ │ ├── Elixir.Ecto.Adapters.SQL.Application.beam │ │ │ │ │ ├── Elixir.Ecto.Adapters.SQL.Connection.beam │ │ │ │ │ ├── Elixir.Ecto.Adapters.SQL.Sandbox.Connection.beam │ │ │ │ │ ├── Elixir.Ecto.Adapters.SQL.Sandbox.beam │ │ │ │ │ ├── Elixir.Ecto.Adapters.SQL.Stream.beam │ │ │ │ │ ├── Elixir.Ecto.Adapters.SQL.beam │ │ │ │ │ ├── Elixir.Ecto.Migration.Command.beam │ │ │ │ │ ├── Elixir.Ecto.Migration.Constraint.beam │ │ │ │ │ ├── Elixir.Ecto.Migration.Index.beam │ │ │ │ │ ├── Elixir.Ecto.Migration.Reference.beam │ │ │ │ │ ├── Elixir.Ecto.Migration.Runner.beam │ │ │ │ │ ├── Elixir.Ecto.Migration.SchemaMigration.beam │ │ │ │ │ ├── Elixir.Ecto.Migration.Supervisor.beam │ │ │ │ │ ├── Elixir.Ecto.Migration.Table.beam │ │ │ │ │ ├── Elixir.Ecto.Migration.beam │ │ │ │ │ ├── Elixir.Ecto.Migrator.beam │ │ │ │ │ ├── Elixir.Enumerable.Ecto.Adapters.SQL.Stream.beam │ │ │ │ │ ├── Elixir.Mix.EctoSQL.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Ecto.Dump.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Ecto.Gen.Migration.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Ecto.Load.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Ecto.Migrate.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Ecto.Migrations.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Ecto.Rollback.beam │ │ │ │ │ └── ecto_sql.app │ │ │ │ ├── elixir_make │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.fetch │ │ │ │ │ └── compile.xref │ │ │ │ └── ebin │ │ │ │ │ ├── Elixir.Mix.Tasks.Compile.ElixirMake.beam │ │ │ │ │ └── elixir_make.app │ │ │ │ ├── faker │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.fetch │ │ │ │ │ └── compile.xref │ │ │ │ └── ebin │ │ │ │ │ ├── Elixir.Faker.Address.En.beam │ │ │ │ │ ├── Elixir.Faker.Address.Es.beam │ │ │ │ │ ├── Elixir.Faker.Address.beam │ │ │ │ │ ├── Elixir.Faker.App.beam │ │ │ │ │ ├── Elixir.Faker.Avatar.beam │ │ │ │ │ ├── Elixir.Faker.Beer.En.beam │ │ │ │ │ ├── Elixir.Faker.Beer.beam │ │ │ │ │ ├── Elixir.Faker.Bitcoin.beam │ │ │ │ │ ├── Elixir.Faker.Cat.En.beam │ │ │ │ │ ├── Elixir.Faker.Cat.beam │ │ │ │ │ ├── Elixir.Faker.Code.Iban.beam │ │ │ │ │ ├── Elixir.Faker.Code.beam │ │ │ │ │ ├── Elixir.Faker.Color.En.beam │ │ │ │ │ ├── Elixir.Faker.Color.Es.beam │ │ │ │ │ ├── Elixir.Faker.Color.PtBr.beam │ │ │ │ │ ├── Elixir.Faker.Color.beam │ │ │ │ │ ├── Elixir.Faker.Commerce.En.beam │ │ │ │ │ ├── Elixir.Faker.Commerce.beam │ │ │ │ │ ├── Elixir.Faker.Company.En.beam │ │ │ │ │ ├── Elixir.Faker.Company.beam │ │ │ │ │ ├── Elixir.Faker.Date.beam │ │ │ │ │ ├── Elixir.Faker.DateTime.beam │ │ │ │ │ ├── Elixir.Faker.File.beam │ │ │ │ │ ├── Elixir.Faker.Food.En.beam │ │ │ │ │ ├── Elixir.Faker.Food.beam │ │ │ │ │ ├── Elixir.Faker.Gov.Us.beam │ │ │ │ │ ├── Elixir.Faker.Industry.En.beam │ │ │ │ │ ├── Elixir.Faker.Industry.beam │ │ │ │ │ ├── Elixir.Faker.Internet.En.beam │ │ │ │ │ ├── Elixir.Faker.Internet.Es.beam │ │ │ │ │ ├── Elixir.Faker.Internet.PtBr.beam │ │ │ │ │ ├── Elixir.Faker.Internet.UserAgent.beam │ │ │ │ │ ├── Elixir.Faker.Internet.beam │ │ │ │ │ ├── Elixir.Faker.Lorem.Shakespeare.En.beam │ │ │ │ │ ├── Elixir.Faker.Lorem.Shakespeare.Ru.beam │ │ │ │ │ ├── Elixir.Faker.Lorem.Shakespeare.beam │ │ │ │ │ ├── Elixir.Faker.Lorem.beam │ │ │ │ │ ├── Elixir.Faker.NaiveDateTime.beam │ │ │ │ │ ├── Elixir.Faker.Name.En.beam │ │ │ │ │ ├── Elixir.Faker.Name.Es.beam │ │ │ │ │ ├── Elixir.Faker.Name.PtBr.beam │ │ │ │ │ ├── Elixir.Faker.Name.beam │ │ │ │ │ ├── Elixir.Faker.Nato.beam │ │ │ │ │ ├── Elixir.Faker.Phone.EnGb.beam │ │ │ │ │ ├── Elixir.Faker.Phone.EnUs.beam │ │ │ │ │ ├── Elixir.Faker.Pizza.beam │ │ │ │ │ ├── Elixir.Faker.Pokemon.En.beam │ │ │ │ │ ├── Elixir.Faker.Pokemon.beam │ │ │ │ │ ├── Elixir.Faker.Random.Elixir.beam │ │ │ │ │ ├── Elixir.Faker.Random.Test.beam │ │ │ │ │ ├── Elixir.Faker.Random.beam │ │ │ │ │ ├── Elixir.Faker.StarWars.En.beam │ │ │ │ │ ├── Elixir.Faker.StarWars.beam │ │ │ │ │ ├── Elixir.Faker.String.beam │ │ │ │ │ ├── Elixir.Faker.Superhero.En.beam │ │ │ │ │ ├── Elixir.Faker.Superhero.beam │ │ │ │ │ ├── Elixir.Faker.Team.En.beam │ │ │ │ │ ├── Elixir.Faker.Team.PtBr.beam │ │ │ │ │ ├── Elixir.Faker.Team.beam │ │ │ │ │ ├── Elixir.Faker.UUID.beam │ │ │ │ │ ├── Elixir.Faker.Util.En.beam │ │ │ │ │ ├── Elixir.Faker.Util.beam │ │ │ │ │ ├── Elixir.Faker.beam │ │ │ │ │ └── faker.app │ │ │ │ ├── gettext │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.erlang │ │ │ │ │ ├── compile.fetch │ │ │ │ │ └── compile.xref │ │ │ │ └── ebin │ │ │ │ │ ├── Elixir.Gettext.Application.beam │ │ │ │ │ ├── Elixir.Gettext.Backend.beam │ │ │ │ │ ├── Elixir.Gettext.Compiler.beam │ │ │ │ │ ├── Elixir.Gettext.Error.beam │ │ │ │ │ ├── Elixir.Gettext.Extractor.beam │ │ │ │ │ ├── Elixir.Gettext.ExtractorAgent.beam │ │ │ │ │ ├── Elixir.Gettext.Fuzzy.beam │ │ │ │ │ ├── Elixir.Gettext.Interpolation.beam │ │ │ │ │ ├── Elixir.Gettext.Merger.beam │ │ │ │ │ ├── Elixir.Gettext.MissingBindingsError.beam │ │ │ │ │ ├── Elixir.Gettext.PO.Parser.beam │ │ │ │ │ ├── Elixir.Gettext.PO.PluralTranslation.beam │ │ │ │ │ ├── Elixir.Gettext.PO.SyntaxError.beam │ │ │ │ │ ├── Elixir.Gettext.PO.Tokenizer.beam │ │ │ │ │ ├── Elixir.Gettext.PO.Translation.beam │ │ │ │ │ ├── Elixir.Gettext.PO.Translations.beam │ │ │ │ │ ├── Elixir.Gettext.PO.beam │ │ │ │ │ ├── Elixir.Gettext.Plural.UnknownLocaleError.beam │ │ │ │ │ ├── Elixir.Gettext.Plural.beam │ │ │ │ │ ├── Elixir.Gettext.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Compile.Gettext.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Gettext.Extract.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Gettext.Merge.beam │ │ │ │ │ ├── gettext.app │ │ │ │ │ └── gettext_po_parser.beam │ │ │ │ ├── jason │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.fetch │ │ │ │ │ └── compile.xref │ │ │ │ └── ebin │ │ │ │ │ ├── Elixir.Jason.Codegen.beam │ │ │ │ │ ├── Elixir.Jason.DecodeError.beam │ │ │ │ │ ├── Elixir.Jason.Decoder.Unescape.beam │ │ │ │ │ ├── Elixir.Jason.Decoder.beam │ │ │ │ │ ├── Elixir.Jason.Encode.beam │ │ │ │ │ ├── Elixir.Jason.EncodeError.beam │ │ │ │ │ ├── Elixir.Jason.Encoder.Any.beam │ │ │ │ │ ├── Elixir.Jason.Encoder.Atom.beam │ │ │ │ │ ├── Elixir.Jason.Encoder.BitString.beam │ │ │ │ │ ├── Elixir.Jason.Encoder.Date.beam │ │ │ │ │ ├── Elixir.Jason.Encoder.DateTime.beam │ │ │ │ │ ├── Elixir.Jason.Encoder.Decimal.beam │ │ │ │ │ ├── Elixir.Jason.Encoder.Float.beam │ │ │ │ │ ├── Elixir.Jason.Encoder.Integer.beam │ │ │ │ │ ├── Elixir.Jason.Encoder.Jason.Fragment.beam │ │ │ │ │ ├── Elixir.Jason.Encoder.List.beam │ │ │ │ │ ├── Elixir.Jason.Encoder.Map.beam │ │ │ │ │ ├── Elixir.Jason.Encoder.NaiveDateTime.beam │ │ │ │ │ ├── Elixir.Jason.Encoder.Time.beam │ │ │ │ │ ├── Elixir.Jason.Encoder.beam │ │ │ │ │ ├── Elixir.Jason.Formatter.beam │ │ │ │ │ ├── Elixir.Jason.Fragment.beam │ │ │ │ │ ├── Elixir.Jason.Helpers.beam │ │ │ │ │ ├── Elixir.Jason.beam │ │ │ │ │ └── jason.app │ │ │ │ ├── mariaex │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.fetch │ │ │ │ │ └── compile.xref │ │ │ │ └── ebin │ │ │ │ │ ├── Elixir.DBConnection.Query.Mariaex.Query.beam │ │ │ │ │ ├── Elixir.Mariaex.Cache.beam │ │ │ │ │ ├── Elixir.Mariaex.Coder.Utils.beam │ │ │ │ │ ├── Elixir.Mariaex.Coder.beam │ │ │ │ │ ├── Elixir.Mariaex.Column.beam │ │ │ │ │ ├── Elixir.Mariaex.Connection.Ssl.beam │ │ │ │ │ ├── Elixir.Mariaex.Connection.Tcp.beam │ │ │ │ │ ├── Elixir.Mariaex.Connection.beam │ │ │ │ │ ├── Elixir.Mariaex.Cursor.beam │ │ │ │ │ ├── Elixir.Mariaex.Error.beam │ │ │ │ │ ├── Elixir.Mariaex.Geometry.LineString.beam │ │ │ │ │ ├── Elixir.Mariaex.Geometry.Point.beam │ │ │ │ │ ├── Elixir.Mariaex.Geometry.Polygon.beam │ │ │ │ │ ├── Elixir.Mariaex.LruCache.beam │ │ │ │ │ ├── Elixir.Mariaex.Messages.beam │ │ │ │ │ ├── Elixir.Mariaex.Protocol.beam │ │ │ │ │ ├── Elixir.Mariaex.ProtocolHelper.beam │ │ │ │ │ ├── Elixir.Mariaex.Query.beam │ │ │ │ │ ├── Elixir.Mariaex.Result.beam │ │ │ │ │ ├── Elixir.Mariaex.RowParser.beam │ │ │ │ │ ├── Elixir.Mariaex.beam │ │ │ │ │ ├── Elixir.String.Chars.Mariaex.Query.beam │ │ │ │ │ └── mariaex.app │ │ │ │ ├── mime │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.fetch │ │ │ │ │ └── compile.xref │ │ │ │ ├── ebin │ │ │ │ │ ├── Elixir.MIME.Application.beam │ │ │ │ │ ├── Elixir.MIME.beam │ │ │ │ │ └── mime.app │ │ │ │ └── priv │ │ │ │ ├── pbkdf2_elixir │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.fetch │ │ │ │ │ └── compile.xref │ │ │ │ └── ebin │ │ │ │ │ ├── Elixir.Pbkdf2.Base.beam │ │ │ │ │ ├── Elixir.Pbkdf2.Base64.beam │ │ │ │ │ ├── Elixir.Pbkdf2.Stats.beam │ │ │ │ │ ├── Elixir.Pbkdf2.Tools.beam │ │ │ │ │ ├── Elixir.Pbkdf2.beam │ │ │ │ │ └── pbkdf2_elixir.app │ │ │ │ ├── phoenix │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.fetch │ │ │ │ │ └── compile.xref │ │ │ │ ├── ebin │ │ │ │ │ ├── Elixir.Mix.Phoenix.Context.beam │ │ │ │ │ ├── Elixir.Mix.Phoenix.Schema.beam │ │ │ │ │ ├── Elixir.Mix.Phoenix.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Compile.Phoenix.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Digest.Clean.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Digest.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Gen.Cert.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Gen.Channel.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Gen.Context.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Gen.Embedded.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Gen.Html.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Gen.Json.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Gen.Presence.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Gen.Schema.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Gen.Secret.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Routes.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Server.beam │ │ │ │ │ ├── Elixir.Mix.Tasks.Phx.beam │ │ │ │ │ ├── Elixir.Phoenix.ActionClauseError.beam │ │ │ │ │ ├── Elixir.Phoenix.Channel.Server.beam │ │ │ │ │ ├── Elixir.Phoenix.Channel.beam │ │ │ │ │ ├── Elixir.Phoenix.ChannelTest.NoopSerializer.beam │ │ │ │ │ ├── Elixir.Phoenix.ChannelTest.beam │ │ │ │ │ ├── Elixir.Phoenix.CodeReloader.Proxy.beam │ │ │ │ │ ├── Elixir.Phoenix.CodeReloader.Server.beam │ │ │ │ │ ├── Elixir.Phoenix.CodeReloader.beam │ │ │ │ │ ├── Elixir.Phoenix.Config.beam │ │ │ │ │ ├── Elixir.Phoenix.ConnTest.beam │ │ │ │ │ ├── Elixir.Phoenix.Controller.Pipeline.beam │ │ │ │ │ ├── Elixir.Phoenix.Controller.beam │ │ │ │ │ ├── Elixir.Phoenix.Digester.beam │ │ │ │ │ ├── Elixir.Phoenix.Endpoint.Cowboy2Adapter.beam │ │ │ │ │ ├── Elixir.Phoenix.Endpoint.Cowboy2Handler.beam │ │ │ │ │ ├── Elixir.Phoenix.Endpoint.CowboyAdapter.beam │ │ │ │ │ ├── Elixir.Phoenix.Endpoint.CowboyWebSocket.beam │ │ │ │ │ ├── Elixir.Phoenix.Endpoint.Instrument.beam │ │ │ │ │ ├── Elixir.Phoenix.Endpoint.RenderErrors.beam │ │ │ │ │ ├── Elixir.Phoenix.Endpoint.Supervisor.beam │ │ │ │ │ ├── Elixir.Phoenix.Endpoint.Watcher.beam │ │ │ │ │ ├── Elixir.Phoenix.Endpoint.beam │ │ │ │ │ ├── Elixir.Phoenix.Logger.beam │ │ │ │ │ ├── Elixir.Phoenix.MissingParamError.beam │ │ │ │ │ ├── Elixir.Phoenix.Naming.beam │ │ │ │ │ ├── Elixir.Phoenix.NotAcceptableError.beam │ │ │ │ │ ├── Elixir.Phoenix.Param.Any.beam │ │ │ │ │ ├── Elixir.Phoenix.Param.Atom.beam │ │ │ │ │ ├── Elixir.Phoenix.Param.BitString.beam │ │ │ │ │ ├── Elixir.Phoenix.Param.Integer.beam │ │ │ │ │ ├── Elixir.Phoenix.Param.Map.beam │ │ │ │ │ ├── Elixir.Phoenix.Param.beam │ │ │ │ │ ├── Elixir.Phoenix.Presence.beam │ │ │ │ │ ├── Elixir.Phoenix.Router.ConsoleFormatter.beam │ │ │ │ │ ├── Elixir.Phoenix.Router.Helpers.beam │ │ │ │ │ ├── Elixir.Phoenix.Router.NoRouteError.beam │ │ │ │ │ ├── Elixir.Phoenix.Router.Resource.beam │ │ │ │ │ ├── Elixir.Phoenix.Router.Route.beam │ │ │ │ │ ├── Elixir.Phoenix.Router.Scope.beam │ │ │ │ │ ├── Elixir.Phoenix.Router.beam │ │ │ │ │ ├── Elixir.Phoenix.Socket.Broadcast.beam │ │ │ │ │ ├── Elixir.Phoenix.Socket.InvalidMessageError.beam │ │ │ │ │ ├── Elixir.Phoenix.Socket.Message.beam │ │ │ │ │ ├── Elixir.Phoenix.Socket.PoolSupervisor.beam │ │ │ │ │ ├── Elixir.Phoenix.Socket.Reply.beam │ │ │ │ │ ├── Elixir.Phoenix.Socket.Serializer.beam │ │ │ │ │ ├── Elixir.Phoenix.Socket.Transport.beam │ │ │ │ │ ├── Elixir.Phoenix.Socket.V1.JSONSerializer.beam │ │ │ │ │ ├── Elixir.Phoenix.Socket.V2.JSONSerializer.beam │ │ │ │ │ ├── Elixir.Phoenix.Socket.beam │ │ │ │ │ ├── Elixir.Phoenix.Template.EExEngine.beam │ │ │ │ │ ├── Elixir.Phoenix.Template.Engine.beam │ │ │ │ │ ├── Elixir.Phoenix.Template.ExsEngine.beam │ │ │ │ │ ├── Elixir.Phoenix.Template.HTML.beam │ │ │ │ │ ├── Elixir.Phoenix.Template.UndefinedError.beam │ │ │ │ │ ├── Elixir.Phoenix.Template.beam │ │ │ │ │ ├── Elixir.Phoenix.Token.beam │ │ │ │ │ ├── Elixir.Phoenix.Transports.LongPoll.Server.beam │ │ │ │ │ ├── Elixir.Phoenix.Transports.LongPoll.Supervisor.beam │ │ │ │ │ ├── Elixir.Phoenix.Transports.LongPoll.beam │ │ │ │ │ ├── Elixir.Phoenix.Transports.WebSocket.beam │ │ │ │ │ ├── Elixir.Phoenix.View.beam │ │ │ │ │ ├── Elixir.Phoenix.beam │ │ │ │ │ ├── Elixir.Plug.Exception.Phoenix.ActionClauseError.beam │ │ │ │ │ └── phoenix.app │ │ │ │ └── priv │ │ │ │ ├── phoenix_ecto │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.fetch │ │ │ │ │ └── compile.xref │ │ │ │ └── ebin │ │ │ │ │ ├── Elixir.Phoenix.Ecto.SQL.Sandbox.beam │ │ │ │ │ ├── Elixir.Phoenix.Ecto.SQL.SandboxSession.beam │ │ │ │ │ ├── Elixir.Phoenix.Ecto.SQL.SandboxSupervisor.beam │ │ │ │ │ ├── Elixir.Phoenix.Ecto.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.FormData.Ecto.Changeset.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.Decimal.beam │ │ │ │ │ ├── Elixir.Plug.Exception.Ecto.CastError.beam │ │ │ │ │ ├── Elixir.Plug.Exception.Ecto.InvalidChangesetError.beam │ │ │ │ │ ├── Elixir.Plug.Exception.Ecto.NoResultsError.beam │ │ │ │ │ ├── Elixir.Plug.Exception.Ecto.Query.CastError.beam │ │ │ │ │ ├── Elixir.Plug.Exception.Ecto.StaleEntryError.beam │ │ │ │ │ ├── Elixir.Plug.Exception.Ecto.SubQueryError.beam │ │ │ │ │ └── phoenix_ecto.app │ │ │ │ ├── phoenix_html │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.fetch │ │ │ │ │ └── compile.xref │ │ │ │ ├── ebin │ │ │ │ │ ├── Elixir.Phoenix.HTML.Engine.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.Form.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.FormData.Plug.Conn.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.FormData.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.Format.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.Link.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.Atom.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.BitString.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.Date.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.DateTime.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.Float.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.Integer.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.List.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.NaiveDateTime.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.Phoenix.HTML.Form.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.Time.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.Tuple.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.Tag.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.beam │ │ │ │ │ └── phoenix_html.app │ │ │ │ └── priv │ │ │ │ ├── phoenix_pubsub │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.fetch │ │ │ │ │ └── compile.xref │ │ │ │ └── ebin │ │ │ │ │ ├── Elixir.Phoenix.PubSub.BroadcastError.beam │ │ │ │ │ ├── Elixir.Phoenix.PubSub.GC.beam │ │ │ │ │ ├── Elixir.Phoenix.PubSub.Local.beam │ │ │ │ │ ├── Elixir.Phoenix.PubSub.LocalSupervisor.beam │ │ │ │ │ ├── Elixir.Phoenix.PubSub.PG2.beam │ │ │ │ │ ├── Elixir.Phoenix.PubSub.PG2Server.beam │ │ │ │ │ ├── Elixir.Phoenix.PubSub.Supervisor.beam │ │ │ │ │ ├── Elixir.Phoenix.PubSub.beam │ │ │ │ │ ├── Elixir.Phoenix.Tracker.Clock.beam │ │ │ │ │ ├── Elixir.Phoenix.Tracker.DeltaGeneration.beam │ │ │ │ │ ├── Elixir.Phoenix.Tracker.Replica.beam │ │ │ │ │ ├── Elixir.Phoenix.Tracker.Shard.beam │ │ │ │ │ ├── Elixir.Phoenix.Tracker.State.beam │ │ │ │ │ ├── Elixir.Phoenix.Tracker.beam │ │ │ │ │ └── phoenix_pubsub.app │ │ │ │ ├── plug │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.erlang │ │ │ │ │ ├── compile.fetch │ │ │ │ │ └── compile.xref │ │ │ │ └── ebin │ │ │ │ │ ├── Elixir.Collectable.Plug.Conn.beam │ │ │ │ │ ├── Elixir.Inspect.Plug.Conn.beam │ │ │ │ │ ├── Elixir.Plug.Adapters.Cowboy.beam │ │ │ │ │ ├── Elixir.Plug.Adapters.Cowboy2.beam │ │ │ │ │ ├── Elixir.Plug.Adapters.Test.Conn.beam │ │ │ │ │ ├── Elixir.Plug.BadRequestError.beam │ │ │ │ │ ├── Elixir.Plug.Builder.beam │ │ │ │ │ ├── Elixir.Plug.CSRFProtection.InvalidCSRFTokenError.beam │ │ │ │ │ ├── Elixir.Plug.CSRFProtection.InvalidCrossOriginRequestError.beam │ │ │ │ │ ├── Elixir.Plug.CSRFProtection.beam │ │ │ │ │ ├── Elixir.Plug.Conn.Adapter.beam │ │ │ │ │ ├── Elixir.Plug.Conn.AlreadySentError.beam │ │ │ │ │ ├── Elixir.Plug.Conn.CookieOverflowError.beam │ │ │ │ │ ├── Elixir.Plug.Conn.Cookies.beam │ │ │ │ │ ├── Elixir.Plug.Conn.InvalidHeaderError.beam │ │ │ │ │ ├── Elixir.Plug.Conn.InvalidQueryError.beam │ │ │ │ │ ├── Elixir.Plug.Conn.NotSentError.beam │ │ │ │ │ ├── Elixir.Plug.Conn.Query.beam │ │ │ │ │ ├── Elixir.Plug.Conn.Status.beam │ │ │ │ │ ├── Elixir.Plug.Conn.Unfetched.beam │ │ │ │ │ ├── Elixir.Plug.Conn.Utils.beam │ │ │ │ │ ├── Elixir.Plug.Conn.WrapperError.beam │ │ │ │ │ ├── Elixir.Plug.Conn.beam │ │ │ │ │ ├── Elixir.Plug.Debugger.beam │ │ │ │ │ ├── Elixir.Plug.ErrorHandler.beam │ │ │ │ │ ├── Elixir.Plug.Exception.Any.beam │ │ │ │ │ ├── Elixir.Plug.Exception.beam │ │ │ │ │ ├── Elixir.Plug.HTML.beam │ │ │ │ │ ├── Elixir.Plug.Head.beam │ │ │ │ │ ├── Elixir.Plug.Logger.beam │ │ │ │ │ ├── Elixir.Plug.MIME.beam │ │ │ │ │ ├── Elixir.Plug.MethodOverride.beam │ │ │ │ │ ├── Elixir.Plug.Parsers.BadEncodingError.beam │ │ │ │ │ ├── Elixir.Plug.Parsers.JSON.beam │ │ │ │ │ ├── Elixir.Plug.Parsers.MULTIPART.beam │ │ │ │ │ ├── Elixir.Plug.Parsers.ParseError.beam │ │ │ │ │ ├── Elixir.Plug.Parsers.RequestTooLargeError.beam │ │ │ │ │ ├── Elixir.Plug.Parsers.URLENCODED.beam │ │ │ │ │ ├── Elixir.Plug.Parsers.UnsupportedMediaTypeError.beam │ │ │ │ │ ├── Elixir.Plug.Parsers.beam │ │ │ │ │ ├── Elixir.Plug.RequestId.beam │ │ │ │ │ ├── Elixir.Plug.Router.InvalidSpecError.beam │ │ │ │ │ ├── Elixir.Plug.Router.Utils.beam │ │ │ │ │ ├── Elixir.Plug.Router.beam │ │ │ │ │ ├── Elixir.Plug.SSL.beam │ │ │ │ │ ├── Elixir.Plug.Session.COOKIE.beam │ │ │ │ │ ├── Elixir.Plug.Session.ETS.beam │ │ │ │ │ ├── Elixir.Plug.Session.Store.beam │ │ │ │ │ ├── Elixir.Plug.Session.beam │ │ │ │ │ ├── Elixir.Plug.Static.InvalidPathError.beam │ │ │ │ │ ├── Elixir.Plug.Static.beam │ │ │ │ │ ├── Elixir.Plug.Supervisor.beam │ │ │ │ │ ├── Elixir.Plug.Test.beam │ │ │ │ │ ├── Elixir.Plug.TimeoutError.beam │ │ │ │ │ ├── Elixir.Plug.Upload.beam │ │ │ │ │ ├── Elixir.Plug.UploadError.beam │ │ │ │ │ ├── Elixir.Plug.beam │ │ │ │ │ ├── plug.app │ │ │ │ │ └── plug_multipart.beam │ │ │ │ ├── plug_cowboy │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.fetch │ │ │ │ │ └── compile.xref │ │ │ │ └── ebin │ │ │ │ │ ├── Elixir.Plug.Cowboy.Conn.beam │ │ │ │ │ ├── Elixir.Plug.Cowboy.Handler.beam │ │ │ │ │ ├── Elixir.Plug.Cowboy.Stream.beam │ │ │ │ │ ├── Elixir.Plug.Cowboy.Translator.beam │ │ │ │ │ ├── Elixir.Plug.Cowboy.beam │ │ │ │ │ └── plug_cowboy.app │ │ │ │ ├── plug_crypto │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.fetch │ │ │ │ │ └── compile.xref │ │ │ │ └── ebin │ │ │ │ │ ├── Elixir.Plug.Crypto.KeyGenerator.beam │ │ │ │ │ ├── Elixir.Plug.Crypto.MessageEncryptor.beam │ │ │ │ │ ├── Elixir.Plug.Crypto.MessageVerifier.beam │ │ │ │ │ ├── Elixir.Plug.Crypto.beam │ │ │ │ │ └── plug_crypto.app │ │ │ │ ├── ranch │ │ │ │ ├── .mix │ │ │ │ │ └── compile.fetch │ │ │ │ ├── ebin │ │ │ │ └── mix.rebar.config │ │ │ │ ├── rumbl │ │ │ │ ├── .compile_priv_gettext │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.lock │ │ │ │ │ ├── compile.protocols │ │ │ │ │ └── compile.xref │ │ │ │ ├── consolidated │ │ │ │ │ ├── Elixir.Collectable.beam │ │ │ │ │ ├── Elixir.DBConnection.Query.beam │ │ │ │ │ ├── Elixir.Ecto.Queryable.beam │ │ │ │ │ ├── Elixir.Enumerable.beam │ │ │ │ │ ├── Elixir.IEx.Info.beam │ │ │ │ │ ├── Elixir.Inspect.beam │ │ │ │ │ ├── Elixir.Jason.Encoder.beam │ │ │ │ │ ├── Elixir.List.Chars.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.FormData.beam │ │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.beam │ │ │ │ │ ├── Elixir.Phoenix.Param.beam │ │ │ │ │ ├── Elixir.Plug.Exception.beam │ │ │ │ │ └── Elixir.String.Chars.beam │ │ │ │ ├── ebin │ │ │ │ │ ├── Elixir.Phoenix.Param.Rumbl.Multimedia.Video.beam │ │ │ │ │ ├── Elixir.Rumbl.Accounts.Credential.beam │ │ │ │ │ ├── Elixir.Rumbl.Accounts.User.beam │ │ │ │ │ ├── Elixir.Rumbl.Accounts.beam │ │ │ │ │ ├── Elixir.Rumbl.Application.beam │ │ │ │ │ ├── Elixir.Rumbl.DataCase.beam │ │ │ │ │ ├── Elixir.Rumbl.InfoSys.Backend.beam │ │ │ │ │ ├── Elixir.Rumbl.InfoSys.Cache.beam │ │ │ │ │ ├── Elixir.Rumbl.InfoSys.Result.beam │ │ │ │ │ ├── Elixir.Rumbl.InfoSys.Supervisor.beam │ │ │ │ │ ├── Elixir.Rumbl.InfoSys.Wolfram.beam │ │ │ │ │ ├── Elixir.Rumbl.InfoSys.beam │ │ │ │ │ ├── Elixir.Rumbl.Multimedia.Annotation.beam │ │ │ │ │ ├── Elixir.Rumbl.Multimedia.Category.beam │ │ │ │ │ ├── Elixir.Rumbl.Multimedia.Permalink.beam │ │ │ │ │ ├── Elixir.Rumbl.Multimedia.Video.beam │ │ │ │ │ ├── Elixir.Rumbl.Multimedia.beam │ │ │ │ │ ├── Elixir.Rumbl.Repo.beam │ │ │ │ │ ├── Elixir.Rumbl.TestHelpers.beam │ │ │ │ │ ├── Elixir.Rumbl.beam │ │ │ │ │ ├── Elixir.RumblWeb.AnnotationView.beam │ │ │ │ │ ├── Elixir.RumblWeb.Auth.beam │ │ │ │ │ ├── Elixir.RumblWeb.ChannelCase.beam │ │ │ │ │ ├── Elixir.RumblWeb.ConnCase.beam │ │ │ │ │ ├── Elixir.RumblWeb.Endpoint.beam │ │ │ │ │ ├── Elixir.RumblWeb.ErrorHelpers.beam │ │ │ │ │ ├── Elixir.RumblWeb.ErrorView.beam │ │ │ │ │ ├── Elixir.RumblWeb.Gettext.beam │ │ │ │ │ ├── Elixir.RumblWeb.LayoutView.beam │ │ │ │ │ ├── Elixir.RumblWeb.PageController.beam │ │ │ │ │ ├── Elixir.RumblWeb.PageView.beam │ │ │ │ │ ├── Elixir.RumblWeb.Router.Helpers.beam │ │ │ │ │ ├── Elixir.RumblWeb.Router.beam │ │ │ │ │ ├── Elixir.RumblWeb.SessionController.beam │ │ │ │ │ ├── Elixir.RumblWeb.SessionView.beam │ │ │ │ │ ├── Elixir.RumblWeb.UserController.beam │ │ │ │ │ ├── Elixir.RumblWeb.UserSocket.beam │ │ │ │ │ ├── Elixir.RumblWeb.UserView.beam │ │ │ │ │ ├── Elixir.RumblWeb.VideoController.beam │ │ │ │ │ ├── Elixir.RumblWeb.VideoView.beam │ │ │ │ │ ├── Elixir.RumblWeb.WatchController.beam │ │ │ │ │ ├── Elixir.RumblWeb.WatchView.beam │ │ │ │ │ ├── Elixir.RumblWeb.beam │ │ │ │ │ └── rumbl.app │ │ │ │ └── priv │ │ │ │ ├── sweet_xml │ │ │ │ ├── .mix │ │ │ │ │ ├── compile.elixir │ │ │ │ │ ├── compile.elixir_scm │ │ │ │ │ ├── compile.fetch │ │ │ │ │ └── compile.xref │ │ │ │ └── ebin │ │ │ │ │ ├── Elixir.SweetXml.beam │ │ │ │ │ ├── Elixir.SweetXpath.Priv.beam │ │ │ │ │ ├── Elixir.SweetXpath.beam │ │ │ │ │ └── sweet_xml.app │ │ │ │ └── telemetry │ │ │ │ ├── .mix │ │ │ │ ├── compile.elixir │ │ │ │ ├── compile.elixir_scm │ │ │ │ ├── compile.fetch │ │ │ │ └── compile.xref │ │ │ │ └── ebin │ │ │ │ ├── Elixir.Telemetry.Application.beam │ │ │ │ ├── Elixir.Telemetry.HandlerTable.beam │ │ │ │ ├── Elixir.Telemetry.beam │ │ │ │ └── telemetry.app │ │ ├── dialyzer_manifest_21.2.1_elixir-1.7.4_test │ │ └── dialyzer_tmp │ │ │ └── .elixir_ls │ │ │ └── build │ │ │ └── test │ │ │ └── lib │ │ │ ├── bcrypt_elixir │ │ │ └── ebin │ │ │ │ ├── Elixir.Bcrypt.Base.beam │ │ │ │ ├── Elixir.Bcrypt.Stats.beam │ │ │ │ └── Elixir.Bcrypt.beam │ │ │ ├── comeonin │ │ │ └── ebin │ │ │ │ ├── Elixir.Comeonin.Bcrypt.beam │ │ │ │ ├── Elixir.Comeonin.Pbkdf2.beam │ │ │ │ └── Elixir.Comeonin.beam │ │ │ ├── connection │ │ │ └── ebin │ │ │ │ └── Elixir.Connection.beam │ │ │ ├── cowboy │ │ │ └── ebin │ │ │ │ ├── cowboy.beam │ │ │ │ ├── cowboy_app.beam │ │ │ │ ├── cowboy_bstr.beam │ │ │ │ ├── cowboy_children.beam │ │ │ │ ├── cowboy_clear.beam │ │ │ │ ├── cowboy_clock.beam │ │ │ │ ├── cowboy_compress_h.beam │ │ │ │ ├── cowboy_constraints.beam │ │ │ │ ├── cowboy_handler.beam │ │ │ │ ├── cowboy_http.beam │ │ │ │ ├── cowboy_http2.beam │ │ │ │ ├── cowboy_loop.beam │ │ │ │ ├── cowboy_metrics_h.beam │ │ │ │ ├── cowboy_middleware.beam │ │ │ │ ├── cowboy_req.beam │ │ │ │ ├── cowboy_rest.beam │ │ │ │ ├── cowboy_router.beam │ │ │ │ ├── cowboy_static.beam │ │ │ │ ├── cowboy_stream.beam │ │ │ │ ├── cowboy_stream_h.beam │ │ │ │ ├── cowboy_sub_protocol.beam │ │ │ │ ├── cowboy_sup.beam │ │ │ │ ├── cowboy_tls.beam │ │ │ │ ├── cowboy_tracer_h.beam │ │ │ │ └── cowboy_websocket.beam │ │ │ ├── cowlib │ │ │ └── ebin │ │ │ │ ├── cow_base64url.beam │ │ │ │ ├── cow_cookie.beam │ │ │ │ ├── cow_date.beam │ │ │ │ ├── cow_hpack.beam │ │ │ │ ├── cow_http.beam │ │ │ │ ├── cow_http2.beam │ │ │ │ ├── cow_http2_machine.beam │ │ │ │ ├── cow_http_hd.beam │ │ │ │ ├── cow_http_te.beam │ │ │ │ ├── cow_iolists.beam │ │ │ │ ├── cow_mimetypes.beam │ │ │ │ ├── cow_multipart.beam │ │ │ │ ├── cow_qs.beam │ │ │ │ ├── cow_spdy.beam │ │ │ │ ├── cow_sse.beam │ │ │ │ ├── cow_uri.beam │ │ │ │ └── cow_ws.beam │ │ │ ├── db_connection │ │ │ └── ebin │ │ │ │ ├── Elixir.DBConnection.App.beam │ │ │ │ ├── Elixir.DBConnection.Backoff.beam │ │ │ │ ├── Elixir.DBConnection.Connection.beam │ │ │ │ ├── Elixir.DBConnection.ConnectionError.beam │ │ │ │ ├── Elixir.DBConnection.ConnectionPool.Pool.beam │ │ │ │ ├── Elixir.DBConnection.ConnectionPool.PoolSupervisor.beam │ │ │ │ ├── Elixir.DBConnection.ConnectionPool.beam │ │ │ │ ├── Elixir.DBConnection.EncodeError.beam │ │ │ │ ├── Elixir.DBConnection.Holder.beam │ │ │ │ ├── Elixir.DBConnection.LogEntry.beam │ │ │ │ ├── Elixir.DBConnection.Ownership.Manager.beam │ │ │ │ ├── Elixir.DBConnection.Ownership.Proxy.beam │ │ │ │ ├── Elixir.DBConnection.Ownership.ProxySupervisor.beam │ │ │ │ ├── Elixir.DBConnection.Ownership.beam │ │ │ │ ├── Elixir.DBConnection.OwnershipError.beam │ │ │ │ ├── Elixir.DBConnection.PrepareStream.beam │ │ │ │ ├── Elixir.DBConnection.Query.beam │ │ │ │ ├── Elixir.DBConnection.Stream.beam │ │ │ │ ├── Elixir.DBConnection.Task.beam │ │ │ │ ├── Elixir.DBConnection.TransactionError.beam │ │ │ │ ├── Elixir.DBConnection.Watcher.beam │ │ │ │ ├── Elixir.DBConnection.beam │ │ │ │ ├── Elixir.Enumerable.DBConnection.PrepareStream.beam │ │ │ │ └── Elixir.Enumerable.DBConnection.Stream.beam │ │ │ ├── decimal │ │ │ └── ebin │ │ │ │ ├── Elixir.Decimal.Context.beam │ │ │ │ ├── Elixir.Decimal.Error.beam │ │ │ │ ├── Elixir.Decimal.beam │ │ │ │ ├── Elixir.Inspect.Decimal.beam │ │ │ │ └── Elixir.String.Chars.Decimal.beam │ │ │ ├── ecto │ │ │ └── ebin │ │ │ │ ├── Elixir.Ecto.Adapter.Queryable.beam │ │ │ │ ├── Elixir.Ecto.Adapter.Schema.beam │ │ │ │ ├── Elixir.Ecto.Adapter.Storage.beam │ │ │ │ ├── Elixir.Ecto.Adapter.Transaction.beam │ │ │ │ ├── Elixir.Ecto.Adapter.beam │ │ │ │ ├── Elixir.Ecto.Application.beam │ │ │ │ ├── Elixir.Ecto.Association.BelongsTo.beam │ │ │ │ ├── Elixir.Ecto.Association.Has.beam │ │ │ │ ├── Elixir.Ecto.Association.HasThrough.beam │ │ │ │ ├── Elixir.Ecto.Association.ManyToMany.beam │ │ │ │ ├── Elixir.Ecto.Association.NotLoaded.beam │ │ │ │ ├── Elixir.Ecto.Association.beam │ │ │ │ ├── Elixir.Ecto.CastError.beam │ │ │ │ ├── Elixir.Ecto.ChangeError.beam │ │ │ │ ├── Elixir.Ecto.Changeset.Relation.beam │ │ │ │ ├── Elixir.Ecto.Changeset.beam │ │ │ │ ├── Elixir.Ecto.ConstraintError.beam │ │ │ │ ├── Elixir.Ecto.Embedded.beam │ │ │ │ ├── Elixir.Ecto.InvalidChangesetError.beam │ │ │ │ ├── Elixir.Ecto.InvalidURLError.beam │ │ │ │ ├── Elixir.Ecto.LogEntry.beam │ │ │ │ ├── Elixir.Ecto.MigrationError.beam │ │ │ │ ├── Elixir.Ecto.Multi.beam │ │ │ │ ├── Elixir.Ecto.MultiplePrimaryKeyError.beam │ │ │ │ ├── Elixir.Ecto.MultipleResultsError.beam │ │ │ │ ├── Elixir.Ecto.NoPrimaryKeyFieldError.beam │ │ │ │ ├── Elixir.Ecto.NoPrimaryKeyValueError.beam │ │ │ │ ├── Elixir.Ecto.NoResultsError.beam │ │ │ │ ├── Elixir.Ecto.Query.API.beam │ │ │ │ ├── Elixir.Ecto.Query.BooleanExpr.beam │ │ │ │ ├── Elixir.Ecto.Query.Builder.Combination.beam │ │ │ │ ├── Elixir.Ecto.Query.Builder.Distinct.beam │ │ │ │ ├── Elixir.Ecto.Query.Builder.Dynamic.beam │ │ │ │ ├── Elixir.Ecto.Query.Builder.Filter.beam │ │ │ │ ├── Elixir.Ecto.Query.Builder.From.beam │ │ │ │ ├── Elixir.Ecto.Query.Builder.GroupBy.beam │ │ │ │ ├── Elixir.Ecto.Query.Builder.Join.beam │ │ │ │ ├── Elixir.Ecto.Query.Builder.LimitOffset.beam │ │ │ │ ├── Elixir.Ecto.Query.Builder.Lock.beam │ │ │ │ ├── Elixir.Ecto.Query.Builder.OrderBy.beam │ │ │ │ ├── Elixir.Ecto.Query.Builder.Preload.beam │ │ │ │ ├── Elixir.Ecto.Query.Builder.Select.beam │ │ │ │ ├── Elixir.Ecto.Query.Builder.Update.beam │ │ │ │ ├── Elixir.Ecto.Query.Builder.Windows.beam │ │ │ │ ├── Elixir.Ecto.Query.Builder.beam │ │ │ │ ├── Elixir.Ecto.Query.CastError.beam │ │ │ │ ├── Elixir.Ecto.Query.CompileError.beam │ │ │ │ ├── Elixir.Ecto.Query.DynamicExpr.beam │ │ │ │ ├── Elixir.Ecto.Query.FromExpr.beam │ │ │ │ ├── Elixir.Ecto.Query.JoinExpr.beam │ │ │ │ ├── Elixir.Ecto.Query.Planner.beam │ │ │ │ ├── Elixir.Ecto.Query.QueryExpr.beam │ │ │ │ ├── Elixir.Ecto.Query.SelectExpr.beam │ │ │ │ ├── Elixir.Ecto.Query.Tagged.beam │ │ │ │ ├── Elixir.Ecto.Query.WindowAPI.beam │ │ │ │ ├── Elixir.Ecto.Query.beam │ │ │ │ ├── Elixir.Ecto.QueryError.beam │ │ │ │ ├── Elixir.Ecto.Queryable.Atom.beam │ │ │ │ ├── Elixir.Ecto.Queryable.BitString.beam │ │ │ │ ├── Elixir.Ecto.Queryable.Ecto.Query.beam │ │ │ │ ├── Elixir.Ecto.Queryable.Ecto.SubQuery.beam │ │ │ │ ├── Elixir.Ecto.Queryable.Tuple.beam │ │ │ │ ├── Elixir.Ecto.Queryable.beam │ │ │ │ ├── Elixir.Ecto.Repo.Assoc.beam │ │ │ │ ├── Elixir.Ecto.Repo.Preloader.beam │ │ │ │ ├── Elixir.Ecto.Repo.Queryable.beam │ │ │ │ ├── Elixir.Ecto.Repo.Registry.beam │ │ │ │ ├── Elixir.Ecto.Repo.Schema.beam │ │ │ │ ├── Elixir.Ecto.Repo.Supervisor.beam │ │ │ │ ├── Elixir.Ecto.Repo.Transaction.beam │ │ │ │ ├── Elixir.Ecto.Repo.beam │ │ │ │ ├── Elixir.Ecto.Schema.Loader.beam │ │ │ │ ├── Elixir.Ecto.Schema.Metadata.beam │ │ │ │ ├── Elixir.Ecto.Schema.beam │ │ │ │ ├── Elixir.Ecto.StaleEntryError.beam │ │ │ │ ├── Elixir.Ecto.SubQuery.beam │ │ │ │ ├── Elixir.Ecto.SubQueryError.beam │ │ │ │ ├── Elixir.Ecto.Type.beam │ │ │ │ ├── Elixir.Ecto.UUID.beam │ │ │ │ ├── Elixir.Ecto.beam │ │ │ │ ├── Elixir.Inspect.Ecto.Association.NotLoaded.beam │ │ │ │ ├── Elixir.Inspect.Ecto.Changeset.beam │ │ │ │ ├── Elixir.Inspect.Ecto.Query.DynamicExpr.beam │ │ │ │ ├── Elixir.Inspect.Ecto.Query.beam │ │ │ │ ├── Elixir.Inspect.Ecto.Schema.Metadata.beam │ │ │ │ ├── Elixir.Jason.Encoder.Ecto.Association.NotLoaded.beam │ │ │ │ ├── Elixir.Jason.Encoder.Ecto.Schema.Metadata.beam │ │ │ │ ├── Elixir.Mix.Ecto.beam │ │ │ │ ├── Elixir.Mix.Tasks.Ecto.Create.beam │ │ │ │ ├── Elixir.Mix.Tasks.Ecto.Drop.beam │ │ │ │ ├── Elixir.Mix.Tasks.Ecto.Gen.Repo.beam │ │ │ │ └── Elixir.Mix.Tasks.Ecto.beam │ │ │ ├── ecto_sql │ │ │ └── ebin │ │ │ │ ├── Elixir.Collectable.Ecto.Adapters.SQL.Stream.beam │ │ │ │ ├── Elixir.Ecto.Adapter.Migration.beam │ │ │ │ ├── Elixir.Ecto.Adapter.Structure.beam │ │ │ │ ├── Elixir.Ecto.Adapters.MySQL.Connection.beam │ │ │ │ ├── Elixir.Ecto.Adapters.MySQL.beam │ │ │ │ ├── Elixir.Ecto.Adapters.Postgres.beam │ │ │ │ ├── Elixir.Ecto.Adapters.SQL.Application.beam │ │ │ │ ├── Elixir.Ecto.Adapters.SQL.Connection.beam │ │ │ │ ├── Elixir.Ecto.Adapters.SQL.Sandbox.Connection.beam │ │ │ │ ├── Elixir.Ecto.Adapters.SQL.Sandbox.beam │ │ │ │ ├── Elixir.Ecto.Adapters.SQL.Stream.beam │ │ │ │ ├── Elixir.Ecto.Adapters.SQL.beam │ │ │ │ ├── Elixir.Ecto.Migration.Command.beam │ │ │ │ ├── Elixir.Ecto.Migration.Constraint.beam │ │ │ │ ├── Elixir.Ecto.Migration.Index.beam │ │ │ │ ├── Elixir.Ecto.Migration.Reference.beam │ │ │ │ ├── Elixir.Ecto.Migration.Runner.beam │ │ │ │ ├── Elixir.Ecto.Migration.SchemaMigration.beam │ │ │ │ ├── Elixir.Ecto.Migration.Supervisor.beam │ │ │ │ ├── Elixir.Ecto.Migration.Table.beam │ │ │ │ ├── Elixir.Ecto.Migration.beam │ │ │ │ ├── Elixir.Ecto.Migrator.beam │ │ │ │ ├── Elixir.Enumerable.Ecto.Adapters.SQL.Stream.beam │ │ │ │ ├── Elixir.Mix.EctoSQL.beam │ │ │ │ ├── Elixir.Mix.Tasks.Ecto.Dump.beam │ │ │ │ ├── Elixir.Mix.Tasks.Ecto.Gen.Migration.beam │ │ │ │ ├── Elixir.Mix.Tasks.Ecto.Load.beam │ │ │ │ ├── Elixir.Mix.Tasks.Ecto.Migrate.beam │ │ │ │ ├── Elixir.Mix.Tasks.Ecto.Migrations.beam │ │ │ │ └── Elixir.Mix.Tasks.Ecto.Rollback.beam │ │ │ ├── elixir_make │ │ │ └── ebin │ │ │ │ └── Elixir.Mix.Tasks.Compile.ElixirMake.beam │ │ │ ├── faker │ │ │ └── ebin │ │ │ │ ├── Elixir.Faker.Address.En.beam │ │ │ │ ├── Elixir.Faker.Address.Es.beam │ │ │ │ ├── Elixir.Faker.Address.beam │ │ │ │ ├── Elixir.Faker.App.beam │ │ │ │ ├── Elixir.Faker.Avatar.beam │ │ │ │ ├── Elixir.Faker.Beer.En.beam │ │ │ │ ├── Elixir.Faker.Beer.beam │ │ │ │ ├── Elixir.Faker.Bitcoin.beam │ │ │ │ ├── Elixir.Faker.Cat.En.beam │ │ │ │ ├── Elixir.Faker.Cat.beam │ │ │ │ ├── Elixir.Faker.Code.Iban.beam │ │ │ │ ├── Elixir.Faker.Code.beam │ │ │ │ ├── Elixir.Faker.Color.En.beam │ │ │ │ ├── Elixir.Faker.Color.Es.beam │ │ │ │ ├── Elixir.Faker.Color.PtBr.beam │ │ │ │ ├── Elixir.Faker.Color.beam │ │ │ │ ├── Elixir.Faker.Commerce.En.beam │ │ │ │ ├── Elixir.Faker.Commerce.beam │ │ │ │ ├── Elixir.Faker.Company.En.beam │ │ │ │ ├── Elixir.Faker.Company.beam │ │ │ │ ├── Elixir.Faker.Date.beam │ │ │ │ ├── Elixir.Faker.DateTime.beam │ │ │ │ ├── Elixir.Faker.File.beam │ │ │ │ ├── Elixir.Faker.Food.En.beam │ │ │ │ ├── Elixir.Faker.Food.beam │ │ │ │ ├── Elixir.Faker.Gov.Us.beam │ │ │ │ ├── Elixir.Faker.Industry.En.beam │ │ │ │ ├── Elixir.Faker.Industry.beam │ │ │ │ ├── Elixir.Faker.Internet.En.beam │ │ │ │ ├── Elixir.Faker.Internet.Es.beam │ │ │ │ ├── Elixir.Faker.Internet.PtBr.beam │ │ │ │ ├── Elixir.Faker.Internet.UserAgent.beam │ │ │ │ ├── Elixir.Faker.Internet.beam │ │ │ │ ├── Elixir.Faker.Lorem.Shakespeare.En.beam │ │ │ │ ├── Elixir.Faker.Lorem.Shakespeare.Ru.beam │ │ │ │ ├── Elixir.Faker.Lorem.Shakespeare.beam │ │ │ │ ├── Elixir.Faker.Lorem.beam │ │ │ │ ├── Elixir.Faker.NaiveDateTime.beam │ │ │ │ ├── Elixir.Faker.Name.En.beam │ │ │ │ ├── Elixir.Faker.Name.Es.beam │ │ │ │ ├── Elixir.Faker.Name.PtBr.beam │ │ │ │ ├── Elixir.Faker.Name.beam │ │ │ │ ├── Elixir.Faker.Nato.beam │ │ │ │ ├── Elixir.Faker.Phone.EnGb.beam │ │ │ │ ├── Elixir.Faker.Phone.EnUs.beam │ │ │ │ ├── Elixir.Faker.Pizza.beam │ │ │ │ ├── Elixir.Faker.Pokemon.En.beam │ │ │ │ ├── Elixir.Faker.Pokemon.beam │ │ │ │ ├── Elixir.Faker.Random.Elixir.beam │ │ │ │ ├── Elixir.Faker.Random.Test.beam │ │ │ │ ├── Elixir.Faker.Random.beam │ │ │ │ ├── Elixir.Faker.StarWars.En.beam │ │ │ │ ├── Elixir.Faker.StarWars.beam │ │ │ │ ├── Elixir.Faker.String.beam │ │ │ │ ├── Elixir.Faker.Superhero.En.beam │ │ │ │ ├── Elixir.Faker.Superhero.beam │ │ │ │ ├── Elixir.Faker.Team.En.beam │ │ │ │ ├── Elixir.Faker.Team.PtBr.beam │ │ │ │ ├── Elixir.Faker.Team.beam │ │ │ │ ├── Elixir.Faker.UUID.beam │ │ │ │ ├── Elixir.Faker.Util.En.beam │ │ │ │ ├── Elixir.Faker.Util.beam │ │ │ │ └── Elixir.Faker.beam │ │ │ ├── gettext │ │ │ └── ebin │ │ │ │ ├── Elixir.Gettext.Application.beam │ │ │ │ ├── Elixir.Gettext.Backend.beam │ │ │ │ ├── Elixir.Gettext.Compiler.beam │ │ │ │ ├── Elixir.Gettext.Error.beam │ │ │ │ ├── Elixir.Gettext.Extractor.beam │ │ │ │ ├── Elixir.Gettext.ExtractorAgent.beam │ │ │ │ ├── Elixir.Gettext.Fuzzy.beam │ │ │ │ ├── Elixir.Gettext.Interpolation.beam │ │ │ │ ├── Elixir.Gettext.Merger.beam │ │ │ │ ├── Elixir.Gettext.MissingBindingsError.beam │ │ │ │ ├── Elixir.Gettext.PO.Parser.beam │ │ │ │ ├── Elixir.Gettext.PO.PluralTranslation.beam │ │ │ │ ├── Elixir.Gettext.PO.SyntaxError.beam │ │ │ │ ├── Elixir.Gettext.PO.Tokenizer.beam │ │ │ │ ├── Elixir.Gettext.PO.Translation.beam │ │ │ │ ├── Elixir.Gettext.PO.Translations.beam │ │ │ │ ├── Elixir.Gettext.PO.beam │ │ │ │ ├── Elixir.Gettext.Plural.UnknownLocaleError.beam │ │ │ │ ├── Elixir.Gettext.Plural.beam │ │ │ │ ├── Elixir.Gettext.beam │ │ │ │ ├── Elixir.Mix.Tasks.Compile.Gettext.beam │ │ │ │ ├── Elixir.Mix.Tasks.Gettext.Extract.beam │ │ │ │ ├── Elixir.Mix.Tasks.Gettext.Merge.beam │ │ │ │ └── gettext_po_parser.beam │ │ │ ├── jason │ │ │ └── ebin │ │ │ │ ├── Elixir.Jason.Codegen.beam │ │ │ │ ├── Elixir.Jason.DecodeError.beam │ │ │ │ ├── Elixir.Jason.Decoder.Unescape.beam │ │ │ │ ├── Elixir.Jason.Decoder.beam │ │ │ │ ├── Elixir.Jason.Encode.beam │ │ │ │ ├── Elixir.Jason.EncodeError.beam │ │ │ │ ├── Elixir.Jason.Encoder.Any.beam │ │ │ │ ├── Elixir.Jason.Encoder.Atom.beam │ │ │ │ ├── Elixir.Jason.Encoder.BitString.beam │ │ │ │ ├── Elixir.Jason.Encoder.Date.beam │ │ │ │ ├── Elixir.Jason.Encoder.DateTime.beam │ │ │ │ ├── Elixir.Jason.Encoder.Decimal.beam │ │ │ │ ├── Elixir.Jason.Encoder.Float.beam │ │ │ │ ├── Elixir.Jason.Encoder.Integer.beam │ │ │ │ ├── Elixir.Jason.Encoder.Jason.Fragment.beam │ │ │ │ ├── Elixir.Jason.Encoder.List.beam │ │ │ │ ├── Elixir.Jason.Encoder.Map.beam │ │ │ │ ├── Elixir.Jason.Encoder.NaiveDateTime.beam │ │ │ │ ├── Elixir.Jason.Encoder.Time.beam │ │ │ │ ├── Elixir.Jason.Encoder.beam │ │ │ │ ├── Elixir.Jason.Formatter.beam │ │ │ │ ├── Elixir.Jason.Fragment.beam │ │ │ │ ├── Elixir.Jason.Helpers.beam │ │ │ │ └── Elixir.Jason.beam │ │ │ ├── mariaex │ │ │ └── ebin │ │ │ │ ├── Elixir.DBConnection.Query.Mariaex.Query.beam │ │ │ │ ├── Elixir.Mariaex.Cache.beam │ │ │ │ ├── Elixir.Mariaex.Coder.Utils.beam │ │ │ │ ├── Elixir.Mariaex.Coder.beam │ │ │ │ ├── Elixir.Mariaex.Column.beam │ │ │ │ ├── Elixir.Mariaex.Connection.Ssl.beam │ │ │ │ ├── Elixir.Mariaex.Connection.Tcp.beam │ │ │ │ ├── Elixir.Mariaex.Connection.beam │ │ │ │ ├── Elixir.Mariaex.Cursor.beam │ │ │ │ ├── Elixir.Mariaex.Error.beam │ │ │ │ ├── Elixir.Mariaex.Geometry.LineString.beam │ │ │ │ ├── Elixir.Mariaex.Geometry.Point.beam │ │ │ │ ├── Elixir.Mariaex.Geometry.Polygon.beam │ │ │ │ ├── Elixir.Mariaex.LruCache.beam │ │ │ │ ├── Elixir.Mariaex.Messages.beam │ │ │ │ ├── Elixir.Mariaex.Protocol.beam │ │ │ │ ├── Elixir.Mariaex.ProtocolHelper.beam │ │ │ │ ├── Elixir.Mariaex.Query.beam │ │ │ │ ├── Elixir.Mariaex.Result.beam │ │ │ │ ├── Elixir.Mariaex.RowParser.beam │ │ │ │ ├── Elixir.Mariaex.beam │ │ │ │ └── Elixir.String.Chars.Mariaex.Query.beam │ │ │ ├── mime │ │ │ └── ebin │ │ │ │ ├── Elixir.MIME.Application.beam │ │ │ │ └── Elixir.MIME.beam │ │ │ ├── pbkdf2_elixir │ │ │ └── ebin │ │ │ │ ├── Elixir.Pbkdf2.Base.beam │ │ │ │ ├── Elixir.Pbkdf2.Base64.beam │ │ │ │ ├── Elixir.Pbkdf2.Stats.beam │ │ │ │ ├── Elixir.Pbkdf2.Tools.beam │ │ │ │ └── Elixir.Pbkdf2.beam │ │ │ ├── phoenix │ │ │ └── ebin │ │ │ │ ├── Elixir.Mix.Phoenix.Context.beam │ │ │ │ ├── Elixir.Mix.Phoenix.Schema.beam │ │ │ │ ├── Elixir.Mix.Phoenix.beam │ │ │ │ ├── Elixir.Mix.Tasks.Compile.Phoenix.beam │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Digest.Clean.beam │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Digest.beam │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Gen.Cert.beam │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Gen.Channel.beam │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Gen.Context.beam │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Gen.Embedded.beam │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Gen.Html.beam │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Gen.Json.beam │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Gen.Presence.beam │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Gen.Schema.beam │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Gen.Secret.beam │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Routes.beam │ │ │ │ ├── Elixir.Mix.Tasks.Phx.Server.beam │ │ │ │ ├── Elixir.Mix.Tasks.Phx.beam │ │ │ │ ├── Elixir.Phoenix.ActionClauseError.beam │ │ │ │ ├── Elixir.Phoenix.Channel.Server.beam │ │ │ │ ├── Elixir.Phoenix.Channel.beam │ │ │ │ ├── Elixir.Phoenix.ChannelTest.NoopSerializer.beam │ │ │ │ ├── Elixir.Phoenix.ChannelTest.beam │ │ │ │ ├── Elixir.Phoenix.CodeReloader.Proxy.beam │ │ │ │ ├── Elixir.Phoenix.CodeReloader.Server.beam │ │ │ │ ├── Elixir.Phoenix.CodeReloader.beam │ │ │ │ ├── Elixir.Phoenix.Config.beam │ │ │ │ ├── Elixir.Phoenix.ConnTest.beam │ │ │ │ ├── Elixir.Phoenix.Controller.Pipeline.beam │ │ │ │ ├── Elixir.Phoenix.Controller.beam │ │ │ │ ├── Elixir.Phoenix.Digester.beam │ │ │ │ ├── Elixir.Phoenix.Endpoint.Cowboy2Adapter.beam │ │ │ │ ├── Elixir.Phoenix.Endpoint.Cowboy2Handler.beam │ │ │ │ ├── Elixir.Phoenix.Endpoint.CowboyAdapter.beam │ │ │ │ ├── Elixir.Phoenix.Endpoint.CowboyWebSocket.beam │ │ │ │ ├── Elixir.Phoenix.Endpoint.Instrument.beam │ │ │ │ ├── Elixir.Phoenix.Endpoint.RenderErrors.beam │ │ │ │ ├── Elixir.Phoenix.Endpoint.Supervisor.beam │ │ │ │ ├── Elixir.Phoenix.Endpoint.Watcher.beam │ │ │ │ ├── Elixir.Phoenix.Endpoint.beam │ │ │ │ ├── Elixir.Phoenix.Logger.beam │ │ │ │ ├── Elixir.Phoenix.MissingParamError.beam │ │ │ │ ├── Elixir.Phoenix.Naming.beam │ │ │ │ ├── Elixir.Phoenix.NotAcceptableError.beam │ │ │ │ ├── Elixir.Phoenix.Param.Any.beam │ │ │ │ ├── Elixir.Phoenix.Param.Atom.beam │ │ │ │ ├── Elixir.Phoenix.Param.BitString.beam │ │ │ │ ├── Elixir.Phoenix.Param.Integer.beam │ │ │ │ ├── Elixir.Phoenix.Param.Map.beam │ │ │ │ ├── Elixir.Phoenix.Param.beam │ │ │ │ ├── Elixir.Phoenix.Presence.beam │ │ │ │ ├── Elixir.Phoenix.Router.ConsoleFormatter.beam │ │ │ │ ├── Elixir.Phoenix.Router.Helpers.beam │ │ │ │ ├── Elixir.Phoenix.Router.NoRouteError.beam │ │ │ │ ├── Elixir.Phoenix.Router.Resource.beam │ │ │ │ ├── Elixir.Phoenix.Router.Route.beam │ │ │ │ ├── Elixir.Phoenix.Router.Scope.beam │ │ │ │ ├── Elixir.Phoenix.Router.beam │ │ │ │ ├── Elixir.Phoenix.Socket.Broadcast.beam │ │ │ │ ├── Elixir.Phoenix.Socket.InvalidMessageError.beam │ │ │ │ ├── Elixir.Phoenix.Socket.Message.beam │ │ │ │ ├── Elixir.Phoenix.Socket.PoolSupervisor.beam │ │ │ │ ├── Elixir.Phoenix.Socket.Reply.beam │ │ │ │ ├── Elixir.Phoenix.Socket.Serializer.beam │ │ │ │ ├── Elixir.Phoenix.Socket.Transport.beam │ │ │ │ ├── Elixir.Phoenix.Socket.V1.JSONSerializer.beam │ │ │ │ ├── Elixir.Phoenix.Socket.V2.JSONSerializer.beam │ │ │ │ ├── Elixir.Phoenix.Socket.beam │ │ │ │ ├── Elixir.Phoenix.Template.EExEngine.beam │ │ │ │ ├── Elixir.Phoenix.Template.Engine.beam │ │ │ │ ├── Elixir.Phoenix.Template.ExsEngine.beam │ │ │ │ ├── Elixir.Phoenix.Template.HTML.beam │ │ │ │ ├── Elixir.Phoenix.Template.UndefinedError.beam │ │ │ │ ├── Elixir.Phoenix.Template.beam │ │ │ │ ├── Elixir.Phoenix.Token.beam │ │ │ │ ├── Elixir.Phoenix.Transports.LongPoll.Server.beam │ │ │ │ ├── Elixir.Phoenix.Transports.LongPoll.Supervisor.beam │ │ │ │ ├── Elixir.Phoenix.Transports.LongPoll.beam │ │ │ │ ├── Elixir.Phoenix.Transports.WebSocket.beam │ │ │ │ ├── Elixir.Phoenix.View.beam │ │ │ │ ├── Elixir.Phoenix.beam │ │ │ │ └── Elixir.Plug.Exception.Phoenix.ActionClauseError.beam │ │ │ ├── phoenix_ecto │ │ │ └── ebin │ │ │ │ ├── Elixir.Phoenix.Ecto.SQL.Sandbox.beam │ │ │ │ ├── Elixir.Phoenix.Ecto.SQL.SandboxSession.beam │ │ │ │ ├── Elixir.Phoenix.Ecto.SQL.SandboxSupervisor.beam │ │ │ │ ├── Elixir.Phoenix.Ecto.beam │ │ │ │ ├── Elixir.Phoenix.HTML.FormData.Ecto.Changeset.beam │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.Decimal.beam │ │ │ │ ├── Elixir.Plug.Exception.Ecto.CastError.beam │ │ │ │ ├── Elixir.Plug.Exception.Ecto.InvalidChangesetError.beam │ │ │ │ ├── Elixir.Plug.Exception.Ecto.NoResultsError.beam │ │ │ │ ├── Elixir.Plug.Exception.Ecto.Query.CastError.beam │ │ │ │ ├── Elixir.Plug.Exception.Ecto.StaleEntryError.beam │ │ │ │ └── Elixir.Plug.Exception.Ecto.SubQueryError.beam │ │ │ ├── phoenix_html │ │ │ └── ebin │ │ │ │ ├── Elixir.Phoenix.HTML.Engine.beam │ │ │ │ ├── Elixir.Phoenix.HTML.Form.beam │ │ │ │ ├── Elixir.Phoenix.HTML.FormData.Plug.Conn.beam │ │ │ │ ├── Elixir.Phoenix.HTML.FormData.beam │ │ │ │ ├── Elixir.Phoenix.HTML.Format.beam │ │ │ │ ├── Elixir.Phoenix.HTML.Link.beam │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.Atom.beam │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.BitString.beam │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.Date.beam │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.DateTime.beam │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.Float.beam │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.Integer.beam │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.List.beam │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.NaiveDateTime.beam │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.Phoenix.HTML.Form.beam │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.Time.beam │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.Tuple.beam │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.beam │ │ │ │ ├── Elixir.Phoenix.HTML.Tag.beam │ │ │ │ └── Elixir.Phoenix.HTML.beam │ │ │ ├── phoenix_pubsub │ │ │ └── ebin │ │ │ │ ├── Elixir.Phoenix.PubSub.BroadcastError.beam │ │ │ │ ├── Elixir.Phoenix.PubSub.GC.beam │ │ │ │ ├── Elixir.Phoenix.PubSub.Local.beam │ │ │ │ ├── Elixir.Phoenix.PubSub.LocalSupervisor.beam │ │ │ │ ├── Elixir.Phoenix.PubSub.PG2.beam │ │ │ │ ├── Elixir.Phoenix.PubSub.PG2Server.beam │ │ │ │ ├── Elixir.Phoenix.PubSub.Supervisor.beam │ │ │ │ ├── Elixir.Phoenix.PubSub.beam │ │ │ │ ├── Elixir.Phoenix.Tracker.Clock.beam │ │ │ │ ├── Elixir.Phoenix.Tracker.DeltaGeneration.beam │ │ │ │ ├── Elixir.Phoenix.Tracker.Replica.beam │ │ │ │ ├── Elixir.Phoenix.Tracker.Shard.beam │ │ │ │ ├── Elixir.Phoenix.Tracker.State.beam │ │ │ │ └── Elixir.Phoenix.Tracker.beam │ │ │ ├── plug │ │ │ └── ebin │ │ │ │ ├── Elixir.Collectable.Plug.Conn.beam │ │ │ │ ├── Elixir.Inspect.Plug.Conn.beam │ │ │ │ ├── Elixir.Plug.Adapters.Cowboy.beam │ │ │ │ ├── Elixir.Plug.Adapters.Cowboy2.beam │ │ │ │ ├── Elixir.Plug.Adapters.Test.Conn.beam │ │ │ │ ├── Elixir.Plug.BadRequestError.beam │ │ │ │ ├── Elixir.Plug.Builder.beam │ │ │ │ ├── Elixir.Plug.CSRFProtection.InvalidCSRFTokenError.beam │ │ │ │ ├── Elixir.Plug.CSRFProtection.InvalidCrossOriginRequestError.beam │ │ │ │ ├── Elixir.Plug.CSRFProtection.beam │ │ │ │ ├── Elixir.Plug.Conn.Adapter.beam │ │ │ │ ├── Elixir.Plug.Conn.AlreadySentError.beam │ │ │ │ ├── Elixir.Plug.Conn.CookieOverflowError.beam │ │ │ │ ├── Elixir.Plug.Conn.Cookies.beam │ │ │ │ ├── Elixir.Plug.Conn.InvalidHeaderError.beam │ │ │ │ ├── Elixir.Plug.Conn.InvalidQueryError.beam │ │ │ │ ├── Elixir.Plug.Conn.NotSentError.beam │ │ │ │ ├── Elixir.Plug.Conn.Query.beam │ │ │ │ ├── Elixir.Plug.Conn.Status.beam │ │ │ │ ├── Elixir.Plug.Conn.Unfetched.beam │ │ │ │ ├── Elixir.Plug.Conn.Utils.beam │ │ │ │ ├── Elixir.Plug.Conn.WrapperError.beam │ │ │ │ ├── Elixir.Plug.Conn.beam │ │ │ │ ├── Elixir.Plug.Debugger.beam │ │ │ │ ├── Elixir.Plug.ErrorHandler.beam │ │ │ │ ├── Elixir.Plug.Exception.Any.beam │ │ │ │ ├── Elixir.Plug.Exception.beam │ │ │ │ ├── Elixir.Plug.HTML.beam │ │ │ │ ├── Elixir.Plug.Head.beam │ │ │ │ ├── Elixir.Plug.Logger.beam │ │ │ │ ├── Elixir.Plug.MIME.beam │ │ │ │ ├── Elixir.Plug.MethodOverride.beam │ │ │ │ ├── Elixir.Plug.Parsers.BadEncodingError.beam │ │ │ │ ├── Elixir.Plug.Parsers.JSON.beam │ │ │ │ ├── Elixir.Plug.Parsers.MULTIPART.beam │ │ │ │ ├── Elixir.Plug.Parsers.ParseError.beam │ │ │ │ ├── Elixir.Plug.Parsers.RequestTooLargeError.beam │ │ │ │ ├── Elixir.Plug.Parsers.URLENCODED.beam │ │ │ │ ├── Elixir.Plug.Parsers.UnsupportedMediaTypeError.beam │ │ │ │ ├── Elixir.Plug.Parsers.beam │ │ │ │ ├── Elixir.Plug.RequestId.beam │ │ │ │ ├── Elixir.Plug.Router.InvalidSpecError.beam │ │ │ │ ├── Elixir.Plug.Router.Utils.beam │ │ │ │ ├── Elixir.Plug.Router.beam │ │ │ │ ├── Elixir.Plug.SSL.beam │ │ │ │ ├── Elixir.Plug.Session.COOKIE.beam │ │ │ │ ├── Elixir.Plug.Session.ETS.beam │ │ │ │ ├── Elixir.Plug.Session.Store.beam │ │ │ │ ├── Elixir.Plug.Session.beam │ │ │ │ ├── Elixir.Plug.Static.InvalidPathError.beam │ │ │ │ ├── Elixir.Plug.Static.beam │ │ │ │ ├── Elixir.Plug.Supervisor.beam │ │ │ │ ├── Elixir.Plug.Test.beam │ │ │ │ ├── Elixir.Plug.TimeoutError.beam │ │ │ │ ├── Elixir.Plug.Upload.beam │ │ │ │ ├── Elixir.Plug.UploadError.beam │ │ │ │ ├── Elixir.Plug.beam │ │ │ │ └── plug_multipart.beam │ │ │ ├── plug_cowboy │ │ │ └── ebin │ │ │ │ ├── Elixir.Plug.Cowboy.Conn.beam │ │ │ │ ├── Elixir.Plug.Cowboy.Handler.beam │ │ │ │ ├── Elixir.Plug.Cowboy.Stream.beam │ │ │ │ ├── Elixir.Plug.Cowboy.Translator.beam │ │ │ │ └── Elixir.Plug.Cowboy.beam │ │ │ ├── plug_crypto │ │ │ └── ebin │ │ │ │ ├── Elixir.Plug.Crypto.KeyGenerator.beam │ │ │ │ ├── Elixir.Plug.Crypto.MessageEncryptor.beam │ │ │ │ ├── Elixir.Plug.Crypto.MessageVerifier.beam │ │ │ │ └── Elixir.Plug.Crypto.beam │ │ │ ├── ranch │ │ │ └── ebin │ │ │ │ ├── ranch.beam │ │ │ │ ├── ranch_acceptor.beam │ │ │ │ ├── ranch_acceptors_sup.beam │ │ │ │ ├── ranch_app.beam │ │ │ │ ├── ranch_conns_sup.beam │ │ │ │ ├── ranch_crc32c.beam │ │ │ │ ├── ranch_listener_sup.beam │ │ │ │ ├── ranch_protocol.beam │ │ │ │ ├── ranch_proxy_header.beam │ │ │ │ ├── ranch_server.beam │ │ │ │ ├── ranch_ssl.beam │ │ │ │ ├── ranch_sup.beam │ │ │ │ ├── ranch_tcp.beam │ │ │ │ └── ranch_transport.beam │ │ │ ├── rumbl │ │ │ ├── consolidated │ │ │ │ ├── Elixir.Collectable.beam │ │ │ │ ├── Elixir.DBConnection.Query.beam │ │ │ │ ├── Elixir.Ecto.Queryable.beam │ │ │ │ ├── Elixir.Enumerable.beam │ │ │ │ ├── Elixir.IEx.Info.beam │ │ │ │ ├── Elixir.Inspect.beam │ │ │ │ ├── Elixir.Jason.Encoder.beam │ │ │ │ ├── Elixir.List.Chars.beam │ │ │ │ ├── Elixir.Phoenix.HTML.FormData.beam │ │ │ │ ├── Elixir.Phoenix.HTML.Safe.beam │ │ │ │ ├── Elixir.Phoenix.Param.beam │ │ │ │ ├── Elixir.Plug.Exception.beam │ │ │ │ └── Elixir.String.Chars.beam │ │ │ └── ebin │ │ │ │ ├── Elixir.Phoenix.Param.Rumbl.Multimedia.Video.beam │ │ │ │ ├── Elixir.Rumbl.Accounts.Credential.beam │ │ │ │ ├── Elixir.Rumbl.Accounts.User.beam │ │ │ │ ├── Elixir.Rumbl.Accounts.beam │ │ │ │ ├── Elixir.Rumbl.Application.beam │ │ │ │ ├── Elixir.Rumbl.DataCase.beam │ │ │ │ ├── Elixir.Rumbl.InfoSys.Backend.beam │ │ │ │ ├── Elixir.Rumbl.InfoSys.Cache.beam │ │ │ │ ├── Elixir.Rumbl.InfoSys.Result.beam │ │ │ │ ├── Elixir.Rumbl.InfoSys.Supervisor.beam │ │ │ │ ├── Elixir.Rumbl.InfoSys.Wolfram.beam │ │ │ │ ├── Elixir.Rumbl.InfoSys.beam │ │ │ │ ├── Elixir.Rumbl.Multimedia.Annotation.beam │ │ │ │ ├── Elixir.Rumbl.Multimedia.Category.beam │ │ │ │ ├── Elixir.Rumbl.Multimedia.Permalink.beam │ │ │ │ ├── Elixir.Rumbl.Multimedia.Video.beam │ │ │ │ ├── Elixir.Rumbl.Multimedia.beam │ │ │ │ ├── Elixir.Rumbl.Repo.beam │ │ │ │ ├── Elixir.Rumbl.TestHelpers.beam │ │ │ │ ├── Elixir.Rumbl.beam │ │ │ │ ├── Elixir.RumblWeb.AnnotationView.beam │ │ │ │ ├── Elixir.RumblWeb.Auth.beam │ │ │ │ ├── Elixir.RumblWeb.ChannelCase.beam │ │ │ │ ├── Elixir.RumblWeb.ConnCase.beam │ │ │ │ ├── Elixir.RumblWeb.Endpoint.beam │ │ │ │ ├── Elixir.RumblWeb.ErrorHelpers.beam │ │ │ │ ├── Elixir.RumblWeb.ErrorView.beam │ │ │ │ ├── Elixir.RumblWeb.Gettext.beam │ │ │ │ ├── Elixir.RumblWeb.LayoutView.beam │ │ │ │ ├── Elixir.RumblWeb.PageController.beam │ │ │ │ ├── Elixir.RumblWeb.PageView.beam │ │ │ │ ├── Elixir.RumblWeb.Router.Helpers.beam │ │ │ │ ├── Elixir.RumblWeb.Router.beam │ │ │ │ ├── Elixir.RumblWeb.SessionController.beam │ │ │ │ ├── Elixir.RumblWeb.SessionView.beam │ │ │ │ ├── Elixir.RumblWeb.UserController.beam │ │ │ │ ├── Elixir.RumblWeb.UserSocket.beam │ │ │ │ ├── Elixir.RumblWeb.UserView.beam │ │ │ │ ├── Elixir.RumblWeb.VideoChannel.beam │ │ │ │ ├── Elixir.RumblWeb.VideoController.beam │ │ │ │ ├── Elixir.RumblWeb.VideoView.beam │ │ │ │ ├── Elixir.RumblWeb.WatchController.beam │ │ │ │ ├── Elixir.RumblWeb.WatchView.beam │ │ │ │ └── Elixir.RumblWeb.beam │ │ │ ├── sweet_xml │ │ │ └── ebin │ │ │ │ ├── Elixir.SweetXml.beam │ │ │ │ ├── Elixir.SweetXpath.Priv.beam │ │ │ │ └── Elixir.SweetXpath.beam │ │ │ └── telemetry │ │ │ └── ebin │ │ │ ├── Elixir.Telemetry.Application.beam │ │ │ ├── Elixir.Telemetry.HandlerTable.beam │ │ │ └── Elixir.Telemetry.beam │ ├── .formatter.exs │ ├── .gitignore │ ├── README.md │ ├── assets │ │ ├── .babelrc │ │ ├── css │ │ │ ├── app.css │ │ │ ├── phoenix.css │ │ │ └── video.css │ │ ├── js │ │ │ ├── app.js │ │ │ ├── player.js │ │ │ ├── socket.js │ │ │ └── video.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── static │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ │ └── phoenix.png │ │ │ └── robots.txt │ │ └── webpack.config.js │ ├── config │ │ ├── config.exs │ │ ├── dev.exs │ │ ├── prod.exs │ │ └── test.exs │ ├── lib │ │ ├── rumbl.ex │ │ ├── rumbl │ │ │ ├── accounts │ │ │ │ ├── accounts.ex │ │ │ │ ├── credential.ex │ │ │ │ └── user.ex │ │ │ ├── application.ex │ │ │ ├── info_sys │ │ │ │ ├── backend.ex │ │ │ │ ├── cache.ex │ │ │ │ ├── info_sys.ex │ │ │ │ ├── supervisor.ex │ │ │ │ └── wolfram.ex │ │ │ ├── multimedia │ │ │ │ ├── annotation.ex │ │ │ │ ├── category.ex │ │ │ │ ├── multimedia.ex │ │ │ │ ├── permalink.ex │ │ │ │ └── video.ex │ │ │ └── repo.ex │ │ ├── rumbl_web.ex │ │ └── rumbl_web │ │ │ ├── channels │ │ │ ├── user_socket.ex │ │ │ └── video_channel.ex │ │ │ ├── controllers │ │ │ ├── page_controller.ex │ │ │ ├── plugs │ │ │ │ └── auth.ex │ │ │ ├── session_controller.ex │ │ │ ├── user_controller.ex │ │ │ ├── video_controller.ex │ │ │ └── watch_controller.ex │ │ │ ├── endpoint.ex │ │ │ ├── gettext.ex │ │ │ ├── router.ex │ │ │ ├── templates │ │ │ ├── layout │ │ │ │ └── app.html.eex │ │ │ ├── page │ │ │ │ └── index.html.eex │ │ │ ├── session │ │ │ │ └── new.html.eex │ │ │ ├── user │ │ │ │ ├── index.html.eex │ │ │ │ ├── new.html.eex │ │ │ │ ├── show.html.eex │ │ │ │ └── user.html.eex │ │ │ ├── video │ │ │ │ ├── edit.html.eex │ │ │ │ ├── form.html.eex │ │ │ │ ├── index.html.eex │ │ │ │ ├── new.html.eex │ │ │ │ └── show.html.eex │ │ │ └── watch │ │ │ │ └── show.html.eex │ │ │ └── views │ │ │ ├── annotation_view.ex │ │ │ ├── error_helpers.ex │ │ │ ├── error_view.ex │ │ │ ├── layout_view.ex │ │ │ ├── page_view.ex │ │ │ ├── session_view.ex │ │ │ ├── user_view.ex │ │ │ ├── video_view.ex │ │ │ └── watch_view.ex │ ├── mix.exs │ ├── mix.lock │ ├── priv │ │ ├── gettext │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── errors.po │ │ │ └── errors.pot │ │ └── repo │ │ │ ├── backend_seeds.exs │ │ │ ├── migrations │ │ │ ├── .formatter.exs │ │ │ ├── 20181229015220_create_users.exs │ │ │ ├── 20181229052234_create_credentials.exs │ │ │ ├── 20181229100050_create_videos.exs │ │ │ ├── 20181229232052_create_categories.exs │ │ │ ├── 20181229232546_add_category_id_to_video.exs │ │ │ ├── 20181231013408_add_slug_to_videos.exs │ │ │ └── 20181231050624_create_annotations.exs │ │ │ └── seeds.exs │ ├── rumbl.iml │ └── test │ │ ├── rumbl │ │ ├── accounts │ │ │ └── accounts_test.exs │ │ └── multimedia │ │ │ └── multimedia_test.exs │ │ ├── rumbl_web │ │ ├── controllers │ │ │ ├── page_controller_test.exs │ │ │ ├── plugs │ │ │ │ └── auth_test.exs │ │ │ └── video_controller_test.exs │ │ └── views │ │ │ ├── error_view_test.exs │ │ │ ├── layout_view_test.exs │ │ │ └── page_view_test.exs │ │ ├── support │ │ ├── channel_case.ex │ │ ├── conn_case.ex │ │ ├── data_case.ex │ │ └── test_helpers.ex │ │ └── test_helper.exs ├── rumbrella │ ├── .formatter.exs │ ├── .gitignore │ ├── README.md │ ├── apps │ │ ├── info_sys │ │ │ ├── .formatter.exs │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ └── config.exs │ │ │ ├── lib │ │ │ │ ├── application.ex │ │ │ │ └── info_sys │ │ │ │ │ ├── backend.ex │ │ │ │ │ ├── cache.ex │ │ │ │ │ ├── info_sys.ex │ │ │ │ │ ├── supervisor.ex │ │ │ │ │ └── wolfram.ex │ │ │ ├── mix.exs │ │ │ └── test │ │ │ │ ├── info_sys_test.exs │ │ │ │ └── test_helper.exs │ │ └── rumbl │ │ │ ├── .formatter.exs │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── assets │ │ │ ├── .babelrc │ │ │ ├── css │ │ │ │ ├── app.css │ │ │ │ ├── phoenix.css │ │ │ │ └── video.css │ │ │ ├── js │ │ │ │ ├── app.js │ │ │ │ ├── player.js │ │ │ │ ├── socket.js │ │ │ │ └── video.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── static │ │ │ │ ├── favicon.ico │ │ │ │ ├── images │ │ │ │ │ └── phoenix.png │ │ │ │ └── robots.txt │ │ │ └── webpack.config.js │ │ │ ├── config │ │ │ ├── config.exs │ │ │ ├── dev.exs │ │ │ ├── prod.exs │ │ │ └── test.exs │ │ │ ├── lib │ │ │ ├── rumbl.ex │ │ │ ├── rumbl │ │ │ │ ├── accounts │ │ │ │ │ ├── accounts.ex │ │ │ │ │ ├── credential.ex │ │ │ │ │ └── user.ex │ │ │ │ ├── application.ex │ │ │ │ ├── multimedia │ │ │ │ │ ├── annotation.ex │ │ │ │ │ ├── category.ex │ │ │ │ │ ├── multimedia.ex │ │ │ │ │ ├── permalink.ex │ │ │ │ │ └── video.ex │ │ │ │ └── repo.ex │ │ │ ├── rumbl_web.ex │ │ │ └── rumbl_web │ │ │ │ ├── channels │ │ │ │ ├── user_socket.ex │ │ │ │ └── video_channel.ex │ │ │ │ ├── controllers │ │ │ │ ├── page_controller.ex │ │ │ │ ├── plugs │ │ │ │ │ └── auth.ex │ │ │ │ ├── session_controller.ex │ │ │ │ ├── user_controller.ex │ │ │ │ ├── video_controller.ex │ │ │ │ └── watch_controller.ex │ │ │ │ ├── endpoint.ex │ │ │ │ ├── gettext.ex │ │ │ │ ├── router.ex │ │ │ │ ├── templates │ │ │ │ ├── layout │ │ │ │ │ └── app.html.eex │ │ │ │ ├── page │ │ │ │ │ └── index.html.eex │ │ │ │ ├── session │ │ │ │ │ └── new.html.eex │ │ │ │ ├── user │ │ │ │ │ ├── index.html.eex │ │ │ │ │ ├── new.html.eex │ │ │ │ │ ├── show.html.eex │ │ │ │ │ └── user.html.eex │ │ │ │ ├── video │ │ │ │ │ ├── edit.html.eex │ │ │ │ │ ├── form.html.eex │ │ │ │ │ ├── index.html.eex │ │ │ │ │ ├── new.html.eex │ │ │ │ │ └── show.html.eex │ │ │ │ └── watch │ │ │ │ │ └── show.html.eex │ │ │ │ └── views │ │ │ │ ├── annotation_view.ex │ │ │ │ ├── error_helpers.ex │ │ │ │ ├── error_view.ex │ │ │ │ ├── layout_view.ex │ │ │ │ ├── page_view.ex │ │ │ │ ├── session_view.ex │ │ │ │ ├── user_view.ex │ │ │ │ ├── video_view.ex │ │ │ │ └── watch_view.ex │ │ │ ├── mix.exs │ │ │ ├── mix.lock │ │ │ ├── priv │ │ │ ├── gettext │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── errors.po │ │ │ │ └── errors.pot │ │ │ └── repo │ │ │ │ ├── backend_seeds.exs │ │ │ │ ├── migrations │ │ │ │ ├── .formatter.exs │ │ │ │ ├── 20181229015220_create_users.exs │ │ │ │ ├── 20181229052234_create_credentials.exs │ │ │ │ ├── 20181229100050_create_videos.exs │ │ │ │ ├── 20181229232052_create_categories.exs │ │ │ │ ├── 20181229232546_add_category_id_to_video.exs │ │ │ │ ├── 20181231013408_add_slug_to_videos.exs │ │ │ │ └── 20181231050624_create_annotations.exs │ │ │ │ └── seeds.exs │ │ │ ├── rumbl.iml │ │ │ └── test │ │ │ ├── rumbl │ │ │ ├── accounts │ │ │ │ └── accounts_test.exs │ │ │ └── multimedia │ │ │ │ └── multimedia_test.exs │ │ │ ├── rumbl_web │ │ │ ├── controllers │ │ │ │ ├── page_controller_test.exs │ │ │ │ ├── plugs │ │ │ │ │ └── auth_test.exs │ │ │ │ └── video_controller_test.exs │ │ │ └── views │ │ │ │ ├── error_view_test.exs │ │ │ │ ├── layout_view_test.exs │ │ │ │ └── page_view_test.exs │ │ │ ├── support │ │ │ ├── channel_case.ex │ │ │ ├── conn_case.ex │ │ │ ├── data_case.ex │ │ │ └── test_helpers.ex │ │ │ └── test_helper.exs │ ├── config │ │ └── config.exs │ ├── mix.exs │ └── mix.lock ├── the_score │ ├── .formatter.exs │ ├── .gitignore │ ├── README.md │ ├── assets │ │ ├── .babelrc │ │ ├── css │ │ │ ├── app.css │ │ │ └── phoenix.css │ │ ├── js │ │ │ ├── app.js │ │ │ └── socket.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── static │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ │ └── phoenix.png │ │ │ └── robots.txt │ │ └── webpack.config.js │ ├── config │ │ ├── config.exs │ │ ├── dev.exs │ │ ├── prod.exs │ │ └── test.exs │ ├── lib │ │ ├── the_score.ex │ │ ├── the_score │ │ │ ├── application.ex │ │ │ ├── repo.ex │ │ │ └── score │ │ │ │ ├── rushing.ex │ │ │ │ └── score.ex │ │ ├── the_score_web.ex │ │ └── the_score_web │ │ │ ├── channels │ │ │ └── user_socket.ex │ │ │ ├── controllers │ │ │ ├── csv_controller.ex │ │ │ └── score_controller.ex │ │ │ ├── endpoint.ex │ │ │ ├── gettext.ex │ │ │ ├── router.ex │ │ │ ├── templates │ │ │ ├── layout │ │ │ │ └── app.html.eex │ │ │ └── score │ │ │ │ ├── form.html.eex │ │ │ │ ├── index.html.eex │ │ │ │ ├── sort_form.html.eex │ │ │ │ └── sorted.html.eex │ │ │ └── views │ │ │ ├── error_helpers.ex │ │ │ ├── error_view.ex │ │ │ ├── layout_view.ex │ │ │ └── score_view.ex │ ├── mix.exs │ ├── mix.lock │ ├── priv │ │ ├── data │ │ │ └── rushing.json │ │ ├── gettext │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── errors.po │ │ │ └── errors.pot │ │ └── repo │ │ │ ├── migrations │ │ │ ├── .formatter.exs │ │ │ └── 20191112205230_create_score_rushings.exs │ │ │ └── seeds.exs │ └── test │ │ ├── support │ │ ├── channel_case.ex │ │ ├── conn_case.ex │ │ └── data_case.ex │ │ ├── test_helper.exs │ │ └── the_score_web │ │ ├── controllers │ │ └── page_controller_test.exs │ │ └── views │ │ ├── error_view_test.exs │ │ ├── layout_view_test.exs │ │ └── page_view_test.exs └── user_liveview │ ├── .formatter.exs │ ├── .gitignore │ ├── README.md │ ├── assets │ ├── .babelrc │ ├── css │ │ ├── app.css │ │ └── phoenix.css │ ├── js │ │ ├── app.js │ │ └── socket.js │ ├── package-lock.json │ ├── package.json │ ├── static │ │ ├── favicon.ico │ │ ├── images │ │ │ └── phoenix.png │ │ └── robots.txt │ └── webpack.config.js │ ├── config │ ├── config.exs │ ├── dev.exs │ ├── prod.exs │ └── test.exs │ ├── lib │ ├── user_liveview.ex │ ├── user_liveview │ │ ├── accounts │ │ │ ├── accounts.ex │ │ │ └── user.ex │ │ ├── application.ex │ │ └── repo.ex │ ├── user_liveview_web.ex │ └── user_liveview_web │ │ ├── channels │ │ └── user_socket.ex │ │ ├── controllers │ │ └── user_controller.ex │ │ ├── endpoint.ex │ │ ├── gettext.ex │ │ ├── live │ │ └── user │ │ │ ├── edit.ex │ │ │ ├── index.ex │ │ │ ├── new.ex │ │ │ └── show.ex │ │ ├── router.ex │ │ ├── templates │ │ ├── layout │ │ │ └── app.html.eex │ │ └── user │ │ │ ├── edit.html.leex │ │ │ ├── form.html.leex │ │ │ ├── index.html.leex │ │ │ ├── new.html.leex │ │ │ └── show.html.leex │ │ └── views │ │ ├── error_helpers.ex │ │ ├── error_view.ex │ │ ├── layout_view.ex │ │ └── user_view.ex │ ├── mix.exs │ ├── mix.lock │ ├── priv │ ├── gettext │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── errors.po │ │ └── errors.pot │ └── repo │ │ ├── migrations │ │ ├── .formatter.exs │ │ └── 20190421110558_create_users.exs │ │ └── seeds.exs │ └── test │ ├── support │ ├── channel_case.ex │ ├── conn_case.ex │ └── data_case.ex │ ├── test_helper.exs │ ├── user_liveview │ └── accounts │ │ └── accounts_test.exs │ └── user_liveview_web │ ├── controllers │ └── user_controller_test.exs │ └── views │ ├── error_view_test.exs │ └── layout_view_test.exs ├── 1.5 ├── plate-slate-apollo-ui │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── client │ │ │ ├── absinthe-socket-link.js │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── serviceWorker.js │ │ └── setupTests.js │ └── yarn.lock ├── plate-slate-basic-ui │ ├── .gitignore │ ├── index.js │ ├── node_modules │ │ ├── .bin │ │ │ └── mime │ │ ├── .yarn-integrity │ │ ├── accepts │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── array-flatten │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── array-flatten.js │ │ │ └── package.json │ │ ├── body-parser │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── read.js │ │ │ │ └── types │ │ │ │ │ ├── json.js │ │ │ │ │ ├── raw.js │ │ │ │ │ ├── text.js │ │ │ │ │ └── urlencoded.js │ │ │ └── package.json │ │ ├── bytes │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── content-disposition │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── content-type │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cookie-signature │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cookie │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── debug │ │ │ ├── .coveralls.yml │ │ │ ├── .eslintrc │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── component.json │ │ │ ├── karma.conf.js │ │ │ ├── node.js │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── browser.js │ │ │ │ ├── debug.js │ │ │ │ ├── index.js │ │ │ │ ├── inspector-log.js │ │ │ │ └── node.js │ │ ├── depd │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── browser │ │ │ │ │ └── index.js │ │ │ │ └── compat │ │ │ │ │ ├── callsite-tostring.js │ │ │ │ │ ├── event-listener-count.js │ │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── destroy │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── ee-first │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── encodeurl │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── escape-html │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── etag │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── express │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── application.js │ │ │ │ ├── express.js │ │ │ │ ├── middleware │ │ │ │ │ ├── init.js │ │ │ │ │ └── query.js │ │ │ │ ├── request.js │ │ │ │ ├── response.js │ │ │ │ ├── router │ │ │ │ │ ├── index.js │ │ │ │ │ ├── layer.js │ │ │ │ │ └── route.js │ │ │ │ ├── utils.js │ │ │ │ └── view.js │ │ │ └── package.json │ │ ├── finalhandler │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── forwarded │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── fresh │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── http-errors │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── iconv-lite │ │ │ ├── Changelog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── encodings │ │ │ │ ├── dbcs-codec.js │ │ │ │ ├── dbcs-data.js │ │ │ │ ├── index.js │ │ │ │ ├── internal.js │ │ │ │ ├── sbcs-codec.js │ │ │ │ ├── sbcs-data-generated.js │ │ │ │ ├── sbcs-data.js │ │ │ │ ├── tables │ │ │ │ │ ├── big5-added.json │ │ │ │ │ ├── cp936.json │ │ │ │ │ ├── cp949.json │ │ │ │ │ ├── cp950.json │ │ │ │ │ ├── eucjp.json │ │ │ │ │ ├── gb18030-ranges.json │ │ │ │ │ ├── gbk-added.json │ │ │ │ │ └── shiftjis.json │ │ │ │ ├── utf16.js │ │ │ │ └── utf7.js │ │ │ ├── lib │ │ │ │ ├── bom-handling.js │ │ │ │ ├── extend-node.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── streams.js │ │ │ └── package.json │ │ ├── inherits │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── inherits.js │ │ │ ├── inherits_browser.js │ │ │ └── package.json │ │ ├── ipaddr.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ipaddr.min.js │ │ │ ├── lib │ │ │ │ ├── ipaddr.js │ │ │ │ └── ipaddr.js.d.ts │ │ │ └── package.json │ │ ├── media-typer │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── merge-descriptors │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── methods │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime-db │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── db.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime-types │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime │ │ │ ├── .npmignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cli.js │ │ │ ├── mime.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── build.js │ │ │ │ └── test.js │ │ │ └── types.json │ │ ├── ms │ │ │ ├── index.js │ │ │ ├── license.md │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── negotiator │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── charset.js │ │ │ │ ├── encoding.js │ │ │ │ ├── language.js │ │ │ │ └── mediaType.js │ │ │ └── package.json │ │ ├── on-finished │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── parseurl │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── path-to-regexp │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── proxy-addr │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── qs │ │ │ ├── .editorconfig │ │ │ ├── .eslintignore │ │ │ ├── .eslintrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ └── qs.js │ │ │ ├── lib │ │ │ │ ├── formats.js │ │ │ │ ├── index.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── .eslintrc │ │ │ │ ├── index.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ ├── range-parser │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── raw-body │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── safe-buffer │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── safer-buffer │ │ │ ├── LICENSE │ │ │ ├── Porting-Buffer.md │ │ │ ├── Readme.md │ │ │ ├── dangerous.js │ │ │ ├── package.json │ │ │ ├── safer.js │ │ │ └── tests.js │ │ ├── send │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ ├── .bin │ │ │ │ │ └── mime │ │ │ │ ├── http-errors │ │ │ │ │ ├── HISTORY.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── inherits │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── inherits.js │ │ │ │ │ ├── inherits_browser.js │ │ │ │ │ └── package.json │ │ │ │ └── ms │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ └── package.json │ │ ├── serve-static │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── setprototypeof │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── index.js │ │ ├── statuses │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── codes.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── toidentifier │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── type-is │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── unpipe │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── utils-merge │ │ │ ├── .npmignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ └── vary │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ ├── package.json │ ├── public │ │ ├── index.html │ │ └── js │ │ │ └── app.js │ └── yarn.lock ├── plate-slate-relay-ui │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── schema.graphql │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── __generated__ │ │ │ └── AppQuery.graphql.js │ │ ├── absinthe-socket.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── relay-environment.js │ │ ├── serviceWorker.js │ │ └── setupTests.js │ └── yarn.lock └── plateslate │ ├── .formatter.exs │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── libraries │ │ ├── absinthe.xml │ │ ├── absinthe_phoenix.xml │ │ ├── absinthe_plug.xml │ │ ├── absinthe_relay.xml │ │ ├── argon2_elixir.xml │ │ ├── atomic_map.xml │ │ ├── bcrypt_elixir.xml │ │ ├── benchee.xml │ │ ├── benchee_json.xml │ │ ├── benchfella.xml │ │ ├── circular_buffer.xml │ │ ├── comeonin.xml │ │ ├── comeonin_ecto_password.xml │ │ ├── connection.xml │ │ ├── cors_plug.xml │ │ ├── cowboy.xml │ │ ├── cowlib.xml │ │ ├── dataloader.xml │ │ ├── db_connection.xml │ │ ├── decimal.xml │ │ ├── dialyxir.xml │ │ ├── earmark.xml │ │ ├── ecto.xml │ │ ├── ecto_sql.xml │ │ ├── ex_doc.xml │ │ ├── excoveralls.xml │ │ ├── file_system.xml │ │ ├── floki.xml │ │ ├── gettext.xml │ │ ├── hackney.xml │ │ ├── html_entities.xml │ │ ├── inch_ex.xml │ │ ├── jason.xml │ │ ├── kadabra.xml │ │ ├── mime.xml │ │ ├── mix_test_watch.xml │ │ ├── nimble_parsec.xml │ │ ├── pbkdf2_elixir.xml │ │ ├── phoenix.xml │ │ ├── phoenix_ecto.xml │ │ ├── phoenix_html.xml │ │ ├── phoenix_live_dashboard.xml │ │ ├── phoenix_live_reload.xml │ │ ├── phoenix_live_view.xml │ │ ├── phoenix_pubsub.xml │ │ ├── plug.xml │ │ ├── plug_cowboy.xml │ │ ├── plug_crypto.xml │ │ ├── poison.xml │ │ ├── postgrex.xml │ │ ├── ranch.xml │ │ ├── stream_data.xml │ │ ├── telemetry.xml │ │ ├── telemetry_metrics.xml │ │ ├── telemetry_poller.xml │ │ ├── websocket_client.xml │ │ └── x509.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml │ ├── README.md │ ├── assets │ ├── .babelrc │ ├── css │ │ ├── app.scss │ │ └── phoenix.css │ ├── js │ │ ├── app.js │ │ └── socket.js │ ├── package-lock.json │ ├── package.json │ ├── static │ │ ├── favicon.ico │ │ ├── images │ │ │ └── phoenix.png │ │ └── robots.txt │ └── webpack.config.js │ ├── config │ ├── config.exs │ ├── dev.exs │ ├── prod.exs │ ├── prod.secret.exs │ └── test.exs │ ├── lib │ ├── plateslate.ex │ ├── plateslate │ │ ├── accounts.ex │ │ ├── accounts │ │ │ └── user.ex │ │ ├── application.ex │ │ ├── menu.ex │ │ ├── menu │ │ │ ├── category.ex │ │ │ ├── item.ex │ │ │ └── item_tag.ex │ │ ├── ordering.ex │ │ ├── ordering │ │ │ ├── item.ex │ │ │ └── order.ex │ │ └── repo.ex │ ├── plateslate_web.ex │ └── plateslate_web │ │ ├── channels │ │ └── user_socket.ex │ │ ├── controllers │ │ ├── item_controller.ex │ │ └── session_controller.ex │ │ ├── endpoint.ex │ │ ├── gettext.ex │ │ ├── grahpql │ │ ├── authentication.ex │ │ ├── context.ex │ │ ├── enums │ │ │ ├── role.ex │ │ │ └── sort_order.ex │ │ ├── input_types │ │ │ ├── login_input.ex │ │ │ ├── menu_item_create_input.ex │ │ │ ├── menu_item_input.ex │ │ │ ├── order_place_input.ex │ │ │ └── signup_input.ex │ │ ├── middleware │ │ │ ├── authorize.ex │ │ │ └── changeset_errors.ex │ │ ├── resolvers │ │ │ ├── account.ex │ │ │ ├── menu.ex │ │ │ ├── menu_item_create_result.ex │ │ │ ├── order_place_result.ex │ │ │ ├── ordering.ex │ │ │ ├── search_result.ex │ │ │ └── signup_result.ex │ │ ├── scalars │ │ │ ├── date.ex │ │ │ └── decimal.ex │ │ └── types │ │ │ ├── category.ex │ │ │ ├── error.ex │ │ │ ├── menu.ex │ │ │ ├── menu_item_create_result.ex │ │ │ ├── menu_item_result.ex │ │ │ ├── order.ex │ │ │ ├── order_history.ex │ │ │ ├── order_place_result.ex │ │ │ ├── search_result.ex │ │ │ ├── session.ex │ │ │ ├── signup_result.ex │ │ │ └── user.ex │ │ ├── plugs │ │ └── admin_auth.ex │ │ ├── router.ex │ │ ├── schema.ex │ │ ├── telemetry.ex │ │ ├── templates │ │ ├── item │ │ │ ├── edit.html.eex │ │ │ ├── form.html.eex │ │ │ ├── index.html.eex │ │ │ ├── new.html.eex │ │ │ └── show.html.eex │ │ ├── layout │ │ │ └── app.html.eex │ │ ├── page │ │ │ └── index.html.eex │ │ └── session │ │ │ └── new.html.eex │ │ └── views │ │ ├── error_helpers.ex │ │ ├── error_view.ex │ │ ├── item_view.ex │ │ ├── layout_view.ex │ │ ├── page_view.ex │ │ └── session_view.ex │ ├── mix.exs │ ├── mix.lock │ ├── plateslate.iml │ ├── priv │ ├── gettext │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── errors.po │ │ └── errors.pot │ └── repo │ │ ├── migrations │ │ ├── .formatter.exs │ │ ├── 20170825000509_create_categories.exs │ │ ├── 20170825000510_create_items.exs │ │ ├── 20170825000511_create_item_tags.exs │ │ ├── 20170825000526_create_menu_tag_taggings.exs │ │ ├── 20200831112715_add_index_for_menu_item_names.exs │ │ ├── 20200901114003_create_orders.exs │ │ ├── 20200905114759_create_users.exs │ │ ├── 20200905115510_add_customer_to_orders.exs │ │ └── 20200914120136_create_order_items_view.exs │ │ ├── seed.ex │ │ └── seeds.exs │ └── test │ ├── plateslate │ ├── ordering_test.exs │ └── update_order_test.exs │ ├── plateslate_web │ ├── controllers │ │ └── item_controller_test.exs │ ├── schema │ │ ├── mutations │ │ │ ├── login_test.exs │ │ │ └── menu_item_create_test.exs │ │ ├── queries │ │ │ ├── menu_test.exs │ │ │ └── search_test.exs │ │ └── subscriptions │ │ │ └── new_order_test.exs │ └── views │ │ ├── error_view_test.exs │ │ ├── layout_view_test.exs │ │ └── page_view_test.exs │ ├── support │ ├── channel_case.ex │ ├── conn_case.ex │ ├── data_case.ex │ ├── factory.ex │ └── subscription_case.ex │ └── test_helper.exs ├── 1.6.15 └── pento │ ├── .formatter.exs │ ├── .gitignore │ ├── README.md │ ├── assets │ ├── css │ │ ├── app.css │ │ └── phoenix.css │ ├── js │ │ └── app.js │ └── vendor │ │ └── topbar.js │ ├── config │ ├── config.exs │ ├── dev.exs │ ├── prod.exs │ ├── runtime.exs │ └── test.exs │ ├── lib │ ├── pento.ex │ ├── pento │ │ ├── accounts.ex │ │ ├── accounts │ │ │ ├── user.ex │ │ │ ├── user_notifier.ex │ │ │ └── user_token.ex │ │ ├── application.ex │ │ ├── catalog.ex │ │ ├── catalog │ │ │ └── product.ex │ │ ├── mailer.ex │ │ ├── promo.ex │ │ ├── promo │ │ │ └── recipient.ex │ │ └── repo.ex │ ├── pento_web.ex │ └── pento_web │ │ ├── controllers │ │ ├── page_controller.ex │ │ ├── user_auth.ex │ │ ├── user_confirmation_controller.ex │ │ ├── user_registration_controller.ex │ │ ├── user_reset_password_controller.ex │ │ ├── user_session_controller.ex │ │ └── user_settings_controller.ex │ │ ├── endpoint.ex │ │ ├── gettext.ex │ │ ├── live │ │ ├── live_helpers.ex │ │ ├── product_live │ │ │ ├── form_component.ex │ │ │ ├── form_component.html.heex │ │ │ ├── index.ex │ │ │ ├── index.html.heex │ │ │ ├── show.ex │ │ │ └── show.html.heex │ │ ├── promo_live.ex │ │ ├── promo_live.html.heex │ │ ├── user_auth_live.ex │ │ └── wrong_live.ex │ │ ├── router.ex │ │ ├── telemetry.ex │ │ ├── templates │ │ ├── layout │ │ │ ├── _user_menu.html.heex │ │ │ ├── app.html.heex │ │ │ ├── live.html.heex │ │ │ └── root.html.heex │ │ ├── page │ │ │ └── index.html.heex │ │ ├── user_confirmation │ │ │ ├── edit.html.heex │ │ │ └── new.html.heex │ │ ├── user_registration │ │ │ └── new.html.heex │ │ ├── user_reset_password │ │ │ ├── edit.html.heex │ │ │ └── new.html.heex │ │ ├── user_session │ │ │ └── new.html.heex │ │ └── user_settings │ │ │ └── edit.html.heex │ │ └── views │ │ ├── error_helpers.ex │ │ ├── error_view.ex │ │ ├── layout_view.ex │ │ ├── page_view.ex │ │ ├── user_confirmation_view.ex │ │ ├── user_registration_view.ex │ │ ├── user_reset_password_view.ex │ │ ├── user_session_view.ex │ │ └── user_settings_view.ex │ ├── mix.exs │ ├── mix.lock │ ├── priv │ ├── gettext │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── errors.po │ │ └── errors.pot │ ├── repo │ │ ├── migrations │ │ │ ├── .formatter.exs │ │ │ ├── 20221120123146_create_users_auth_tables.exs │ │ │ └── 20221121035055_create_products.exs │ │ └── seeds.exs │ └── static │ │ ├── favicon.ico │ │ ├── images │ │ └── phoenix.png │ │ └── robots.txt │ └── test │ ├── pento │ ├── accounts_test.exs │ └── catalog_test.exs │ ├── pento_web │ ├── controllers │ │ ├── page_controller_test.exs │ │ ├── user_auth_test.exs │ │ ├── user_confirmation_controller_test.exs │ │ ├── user_registration_controller_test.exs │ │ ├── user_reset_password_controller_test.exs │ │ ├── user_session_controller_test.exs │ │ └── user_settings_controller_test.exs │ ├── live │ │ └── product_live_test.exs │ └── views │ │ ├── error_view_test.exs │ │ ├── layout_view_test.exs │ │ └── page_view_test.exs │ ├── support │ ├── conn_case.ex │ ├── data_case.ex │ └── fixtures │ │ ├── accounts_fixtures.ex │ │ └── catalog_fixtures.ex │ └── test_helper.exs ├── 1.6.2 ├── hello │ ├── .buildpacks │ ├── .formatter.exs │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── hello.iml │ │ ├── libraries │ │ │ ├── castore.xml │ │ │ ├── connection.xml │ │ │ ├── cowboy.xml │ │ │ ├── cowboy_telemetry.xml │ │ │ ├── cowlib.xml │ │ │ ├── db_connection.xml │ │ │ ├── decimal.xml │ │ │ ├── ecto.xml │ │ │ ├── ecto_psql_extras.xml │ │ │ ├── ecto_sql.xml │ │ │ ├── esbuild.xml │ │ │ ├── file_system.xml │ │ │ ├── floki.xml │ │ │ ├── gettext.xml │ │ │ ├── html_entities.xml │ │ │ ├── jason.xml │ │ │ ├── mime.xml │ │ │ ├── phoenix.xml │ │ │ ├── phoenix_ecto.xml │ │ │ ├── phoenix_html.xml │ │ │ ├── phoenix_live_dashboard.xml │ │ │ ├── phoenix_live_reload.xml │ │ │ ├── phoenix_live_view.xml │ │ │ ├── phoenix_pubsub.xml │ │ │ ├── phoenix_view.xml │ │ │ ├── plug.xml │ │ │ ├── plug_cowboy.xml │ │ │ ├── plug_crypto.xml │ │ │ ├── postgrex.xml │ │ │ ├── ranch.xml │ │ │ ├── swoosh.xml │ │ │ ├── table_rex.xml │ │ │ ├── telemetry.xml │ │ │ ├── telemetry_metrics.xml │ │ │ └── telemetry_poller.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── vcs.xml │ ├── Dockerfile │ ├── README.md │ ├── assets │ │ ├── .buildpacks │ │ ├── css │ │ │ ├── app.css │ │ │ └── phoenix.css │ │ ├── js │ │ │ └── app.js │ │ ├── package.json │ │ └── vendor │ │ │ └── topbar.js │ ├── config │ │ ├── config.exs │ │ ├── dev.exs │ │ ├── prod.exs │ │ ├── runtime.exs │ │ └── test.exs │ ├── elixir_buildpack.config │ ├── lib │ │ ├── hello.ex │ │ ├── hello │ │ │ ├── application.ex │ │ │ ├── mailer.ex │ │ │ ├── release.ex │ │ │ └── repo.ex │ │ ├── hello_web.ex │ │ └── hello_web │ │ │ ├── controllers │ │ │ ├── hello_controller.ex │ │ │ └── page_controller.ex │ │ │ ├── endpoint.ex │ │ │ ├── gettext.ex │ │ │ ├── router.ex │ │ │ ├── telemetry.ex │ │ │ ├── templates │ │ │ ├── hello │ │ │ │ ├── index.html.heex │ │ │ │ └── show.html.heex │ │ │ ├── layout │ │ │ │ ├── admin.html.heex │ │ │ │ ├── app.html.heex │ │ │ │ ├── live.html.heex │ │ │ │ └── root.html.heex │ │ │ └── page │ │ │ │ ├── index.html.heex │ │ │ │ └── index.text.eex │ │ │ └── views │ │ │ ├── error_helpers.ex │ │ │ ├── error_view.ex │ │ │ ├── hello_view.ex │ │ │ ├── layout_view.ex │ │ │ └── page_view.ex │ ├── mix.exs │ ├── mix.lock │ ├── phoenix_static_buildpack.config │ ├── priv │ │ ├── gettext │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── errors.po │ │ │ └── errors.pot │ │ ├── repo │ │ │ ├── migrations │ │ │ │ └── .formatter.exs │ │ │ └── seeds.exs │ │ └── static │ │ │ ├── favicon-a8ca4e3a2bb8fea46a9ee9e102e7d3eb.ico │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ ├── phoenix-5bd99a0d17dd41bc9d9bf6840abcc089.png │ │ │ └── phoenix.png │ │ │ ├── robots-067185ba27a5d9139b10a759679045bf.txt │ │ │ ├── robots-067185ba27a5d9139b10a759679045bf.txt.gz │ │ │ ├── robots.txt │ │ │ └── robots.txt.gz │ └── test │ │ ├── hello_web │ │ ├── controllers │ │ │ └── page_controller_test.exs │ │ └── views │ │ │ ├── error_view_test.exs │ │ │ ├── layout_view_test.exs │ │ │ └── page_view_test.exs │ │ ├── support │ │ ├── channel_case.ex │ │ ├── conn_case.ex │ │ └── data_case.ex │ │ └── test_helper.exs └── liveview │ ├── .idea │ ├── .gitignore │ ├── liveview.iml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml │ └── pento │ ├── .formatter.exs │ ├── .gitignore │ ├── README.md │ ├── assets │ ├── css │ │ ├── app.css │ │ ├── custom.css │ │ └── phoenix.css │ ├── js │ │ └── app.js │ └── vendor │ │ └── topbar.js │ ├── config │ ├── config.exs │ ├── dev.exs │ ├── prod.exs │ ├── runtime.exs │ └── test.exs │ ├── lib │ ├── pento.ex │ ├── pento │ │ ├── accounts.ex │ │ ├── accounts │ │ │ ├── user.ex │ │ │ ├── user_notifier.ex │ │ │ └── user_token.ex │ │ ├── application.ex │ │ ├── catalog.ex │ │ ├── catalog │ │ │ ├── product.ex │ │ │ └── product │ │ │ │ └── query.ex │ │ ├── mailer.ex │ │ ├── promo.ex │ │ ├── promo │ │ │ └── recipient.ex │ │ ├── repo.ex │ │ ├── survey.ex │ │ └── survey │ │ │ ├── demographic.ex │ │ │ ├── demographic │ │ │ └── query.ex │ │ │ ├── rating.ex │ │ │ └── rating │ │ │ └── query.ex │ ├── pento_web.ex │ └── pento_web │ │ ├── controllers │ │ ├── page_controller.ex │ │ ├── user_auth.ex │ │ ├── user_confirmation_controller.ex │ │ ├── user_registration_controller.ex │ │ ├── user_reset_password_controller.ex │ │ ├── user_session_controller.ex │ │ └── user_settings_controller.ex │ │ ├── endpoint.ex │ │ ├── gettext.ex │ │ ├── live │ │ ├── demographic_live │ │ │ ├── form_component.ex │ │ │ ├── form_component.html.heex │ │ │ ├── show_component.ex │ │ │ └── show_component.html.heex │ │ ├── live_helpers.ex │ │ ├── product_live │ │ │ ├── form_component.ex │ │ │ ├── form_component.html.heex │ │ │ ├── index.ex │ │ │ ├── index.html.heex │ │ │ ├── show.ex │ │ │ └── show.html.heex │ │ ├── promo_live.ex │ │ ├── promo_live.html.heex │ │ ├── rating_live │ │ │ ├── form_component.ex │ │ │ ├── form_component.html.heex │ │ │ ├── index_component.ex │ │ │ ├── index_component.html.heex │ │ │ ├── show_component.ex │ │ │ └── show_component.html.heex │ │ ├── survey_live.ex │ │ ├── survey_live.html.heex │ │ └── wrong_live.ex │ │ ├── router.ex │ │ ├── telemetry.ex │ │ ├── templates │ │ ├── layout │ │ │ ├── _user_menu.html.heex │ │ │ ├── app.html.heex │ │ │ ├── live.html.heex │ │ │ └── root.html.heex │ │ ├── page │ │ │ └── index.html.heex │ │ ├── user_confirmation │ │ │ ├── edit.html.heex │ │ │ └── new.html.heex │ │ ├── user_registration │ │ │ └── new.html.heex │ │ ├── user_reset_password │ │ │ ├── edit.html.heex │ │ │ └── new.html.heex │ │ ├── user_session │ │ │ └── new.html.heex │ │ └── user_settings │ │ │ └── edit.html.heex │ │ └── views │ │ ├── error_helpers.ex │ │ ├── error_view.ex │ │ ├── layout_view.ex │ │ ├── page_view.ex │ │ ├── user_confirmation_view.ex │ │ ├── user_registration_view.ex │ │ ├── user_reset_password_view.ex │ │ ├── user_session_view.ex │ │ └── user_settings_view.ex │ ├── mix.exs │ ├── mix.lock │ ├── priv │ ├── gettext │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── errors.po │ │ └── errors.pot │ ├── repo │ │ ├── migrations │ │ │ ├── .formatter.exs │ │ │ ├── 20211221225348_create_users_auth_tables.exs │ │ │ ├── 20211223120217_create_products.exs │ │ │ ├── 20211226233933_add_image_to_products.exs │ │ │ ├── 20220104135110_create_demographics.exs │ │ │ └── 20220104135244_create_ratings.exs │ │ └── seeds.exs │ └── static │ │ ├── favicon.ico │ │ ├── images │ │ ├── default-thumbnail.jpg │ │ ├── live_view_upload-1640569201-488491732911317-4 │ │ ├── live_view_upload-1640569326-908301925124783-3 │ │ ├── live_view_upload-1640569397-129169266454975-4 │ │ ├── live_view_upload-1640611666-713897869768335-2 │ │ └── phoenix.png │ │ └── robots.txt │ └── test │ ├── pento │ ├── accounts_test.exs │ ├── catalog_test.exs │ └── survey_test.exs │ ├── pento_web │ ├── controllers │ │ ├── page_controller_test.exs │ │ ├── user_auth_test.exs │ │ ├── user_confirmation_controller_test.exs │ │ ├── user_registration_controller_test.exs │ │ ├── user_reset_password_controller_test.exs │ │ ├── user_session_controller_test.exs │ │ └── user_settings_controller_test.exs │ ├── live │ │ └── product_live_test.exs │ └── views │ │ ├── error_view_test.exs │ │ ├── layout_view_test.exs │ │ └── page_view_test.exs │ ├── support │ ├── channel_case.ex │ ├── conn_case.ex │ ├── data_case.ex │ └── fixtures │ │ ├── accounts_fixtures.ex │ │ ├── catalog_fixtures.ex │ │ └── survey_fixtures.ex │ └── test_helper.exs ├── 1.7.7 └── fan │ ├── .formatter.exs │ ├── .gitignore │ ├── README.md │ ├── assets │ ├── css │ │ └── app.css │ ├── js │ │ └── app.js │ └── tailwind.config.js │ ├── config │ ├── config.exs │ ├── dev.exs │ ├── prod.exs │ ├── runtime.exs │ └── test.exs │ ├── lib │ ├── fan.ex │ ├── fan │ │ ├── accounts.ex │ │ ├── accounts │ │ │ ├── relationship.ex │ │ │ └── user.ex │ │ ├── application.ex │ │ ├── mailer.ex │ │ └── repo.ex │ ├── fan_web.ex │ └── fan_web │ │ ├── components │ │ ├── core_components.ex │ │ ├── layouts.ex │ │ └── layouts │ │ │ ├── app.html.heex │ │ │ └── root.html.heex │ │ ├── controllers │ │ ├── error_html.ex │ │ ├── error_json.ex │ │ ├── page_controller.ex │ │ ├── page_html.ex │ │ └── page_html │ │ │ └── home.html.heex │ │ ├── endpoint.ex │ │ ├── gettext.ex │ │ ├── router.ex │ │ └── telemetry.ex │ ├── mix.exs │ ├── mix.lock │ ├── priv │ ├── gettext │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── errors.po │ │ └── errors.pot │ ├── repo │ │ ├── migrations │ │ │ ├── .formatter.exs │ │ │ ├── 20230809144338_create_users.exs │ │ │ └── 20230809145435_create_relationships.exs │ │ └── seeds.exs │ └── static │ │ ├── favicon.ico │ │ ├── images │ │ └── logo.svg │ │ └── robots.txt │ └── test │ ├── fan_web │ └── controllers │ │ ├── error_html_test.exs │ │ ├── error_json_test.exs │ │ └── page_controller_test.exs │ ├── support │ ├── conn_case.ex │ └── data_case.ex │ └── test_helper.exs └── multitenacy └── fresco ├── .formatter.exs ├── .gitignore ├── .idea ├── .gitignore ├── fresco.iml ├── libraries │ ├── benchee.xml │ ├── benchee_json.xml │ ├── bypass.xml │ ├── castore.xml │ ├── circular_buffer.xml │ ├── connection.xml │ ├── cowboy.xml │ ├── cowboy_telemetry.xml │ ├── cowlib.xml │ ├── credo.xml │ ├── db_connection.xml │ ├── decimal.xml │ ├── dialyxir.xml │ ├── earmark.xml │ ├── ecto.xml │ ├── ecto_mysql_extras.xml │ ├── ecto_psql_extras.xml │ ├── ecto_sql.xml │ ├── esbuild.xml │ ├── ex_aws.xml │ ├── ex_doc.xml │ ├── excoveralls.xml │ ├── expo.xml │ ├── fast_html.xml │ ├── file_system.xml │ ├── finch.xml │ ├── floki.xml │ ├── gen_smtp.xml │ ├── gettext.xml │ ├── hackney.xml │ ├── html5ever.xml │ ├── html_entities.xml │ ├── inch_ex.xml │ ├── jason.xml │ ├── kadabra.xml │ ├── mail.xml │ ├── makeup_eex.xml │ ├── makeup_elixir.xml │ ├── mariaex.xml │ ├── mime.xml │ ├── mint.xml │ ├── mint_web_socket.xml │ ├── myxql.xml │ ├── phoenix.xml │ ├── phoenix_ecto.xml │ ├── phoenix_html.xml │ ├── phoenix_live_dashboard.xml │ ├── phoenix_live_reload.xml │ ├── phoenix_live_view.xml │ ├── phoenix_pubsub.xml │ ├── phoenix_template.xml │ ├── phoenix_view.xml │ ├── phx_new.xml │ ├── plug.xml │ ├── plug_cowboy.xml │ ├── plug_crypto.xml │ ├── postgrex.xml │ ├── ranch.xml │ ├── ssl_verify_fun.xml │ ├── stream_data.xml │ ├── swoosh.xml │ ├── table.xml │ ├── tds.xml │ ├── telemetry.xml │ ├── telemetry_metrics.xml │ ├── telemetry_poller.xml │ ├── triplex.xml │ └── x509.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── assets ├── css │ ├── app.css │ └── phoenix.css ├── js │ └── app.js └── vendor │ └── topbar.js ├── config ├── config.exs ├── dev.exs ├── prod.exs ├── runtime.exs └── test.exs ├── lib ├── fresco.ex ├── fresco │ ├── accounts.ex │ ├── accounts │ │ └── account.ex │ ├── application.ex │ ├── mailer.ex │ ├── products.ex │ ├── products │ │ └── product.ex │ ├── repo.ex │ └── tenants_helpers.ex ├── fresco_web.ex └── fresco_web │ ├── controllers │ └── page_controller.ex │ ├── endpoint.ex │ ├── gettext.ex │ ├── plugs │ └── subdomain.ex │ ├── router.ex │ ├── subdomain │ ├── page_controller.ex │ └── products_controller.ex │ ├── subdomain_router.ex │ ├── telemetry.ex │ ├── templates │ ├── layout │ │ ├── app.html.heex │ │ ├── live.html.heex │ │ └── root.html.heex │ ├── page │ │ └── index.html.heex │ └── subdomain │ │ ├── page │ │ └── index.html.heex │ │ └── products │ │ └── index.html.heex │ └── views │ ├── error_helpers.ex │ ├── error_view.ex │ ├── layout_view.ex │ ├── page_view.ex │ └── subdomain │ ├── page_view.ex │ └── products_view.ex ├── mix.exs ├── mix.lock ├── priv ├── gettext │ ├── en │ │ └── LC_MESSAGES │ │ │ └── errors.po │ └── errors.pot ├── repo │ ├── migrations │ │ ├── .formatter.exs │ │ └── 20230311204658_create_accounts.exs │ ├── seeds.exs │ └── tenant_migrations │ │ └── 20230311212659_create_products_table.exs └── static │ ├── favicon.ico │ ├── images │ └── phoenix.png │ └── robots.txt └── test ├── fresco └── accounts_test.exs ├── fresco_web ├── controllers │ └── page_controller_test.exs └── views │ ├── error_view_test.exs │ ├── layout_view_test.exs │ └── page_view_test.exs ├── support ├── conn_case.ex ├── data_case.ex └── fixtures │ └── accounts_fixtures.ex └── test_helper.exs /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /1.2/hello_phoenix/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/.gitignore -------------------------------------------------------------------------------- /1.2/hello_phoenix/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/.idea/misc.xml -------------------------------------------------------------------------------- /1.2/hello_phoenix/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/.idea/modules.xml -------------------------------------------------------------------------------- /1.2/hello_phoenix/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/.idea/workspace.xml -------------------------------------------------------------------------------- /1.2/hello_phoenix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/README.md -------------------------------------------------------------------------------- /1.2/hello_phoenix/brunch-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/brunch-config.js -------------------------------------------------------------------------------- /1.2/hello_phoenix/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/config/config.exs -------------------------------------------------------------------------------- /1.2/hello_phoenix/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/config/dev.exs -------------------------------------------------------------------------------- /1.2/hello_phoenix/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/config/prod.exs -------------------------------------------------------------------------------- /1.2/hello_phoenix/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/config/test.exs -------------------------------------------------------------------------------- /1.2/hello_phoenix/hellophoenix.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/hellophoenix.iml -------------------------------------------------------------------------------- /1.2/hello_phoenix/lib/hello_phoenix.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/lib/hello_phoenix.ex -------------------------------------------------------------------------------- /1.2/hello_phoenix/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/mix.exs -------------------------------------------------------------------------------- /1.2/hello_phoenix/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/mix.lock -------------------------------------------------------------------------------- /1.2/hello_phoenix/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/package.json -------------------------------------------------------------------------------- /1.2/hello_phoenix/priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/priv/gettext/errors.pot -------------------------------------------------------------------------------- /1.2/hello_phoenix/priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/priv/repo/seeds.exs -------------------------------------------------------------------------------- /1.2/hello_phoenix/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start 2 | 3 | Ecto.Adapters.SQL.Sandbox.mode(HelloPhoenix.Repo, :manual) 4 | 5 | -------------------------------------------------------------------------------- /1.2/hello_phoenix/web/gettext.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/web/gettext.ex -------------------------------------------------------------------------------- /1.2/hello_phoenix/web/router.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/web/router.ex -------------------------------------------------------------------------------- /1.2/hello_phoenix/web/static/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/web/static/css/app.css -------------------------------------------------------------------------------- /1.2/hello_phoenix/web/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/web/static/js/app.js -------------------------------------------------------------------------------- /1.2/hello_phoenix/web/static/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/web/static/js/socket.js -------------------------------------------------------------------------------- /1.2/hello_phoenix/web/templates/hello/world.html.eex: -------------------------------------------------------------------------------- 1 | ​

Hello <%= String.capitalize @name %>!

2 | -------------------------------------------------------------------------------- /1.2/hello_phoenix/web/views/error_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/web/views/error_view.ex -------------------------------------------------------------------------------- /1.2/hello_phoenix/web/views/hello_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/web/views/hello_view.ex -------------------------------------------------------------------------------- /1.2/hello_phoenix/web/views/page_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/web/views/page_view.ex -------------------------------------------------------------------------------- /1.2/hello_phoenix/web/web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/hello_phoenix/web/web.ex -------------------------------------------------------------------------------- /1.2/phoenix_api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/.gitignore -------------------------------------------------------------------------------- /1.2/phoenix_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/README.md -------------------------------------------------------------------------------- /1.2/phoenix_api/brunch-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/brunch-config.js -------------------------------------------------------------------------------- /1.2/phoenix_api/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/config/config.exs -------------------------------------------------------------------------------- /1.2/phoenix_api/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/config/dev.exs -------------------------------------------------------------------------------- /1.2/phoenix_api/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/config/prod.exs -------------------------------------------------------------------------------- /1.2/phoenix_api/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/config/test.exs -------------------------------------------------------------------------------- /1.2/phoenix_api/lib/app/mailer.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/lib/app/mailer.ex -------------------------------------------------------------------------------- /1.2/phoenix_api/lib/email.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/lib/email.ex -------------------------------------------------------------------------------- /1.2/phoenix_api/lib/event_manager.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/lib/event_manager.ex -------------------------------------------------------------------------------- /1.2/phoenix_api/lib/phoenix_api.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/lib/phoenix_api.ex -------------------------------------------------------------------------------- /1.2/phoenix_api/lib/phoenix_api/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/lib/phoenix_api/repo.ex -------------------------------------------------------------------------------- /1.2/phoenix_api/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/mix.exs -------------------------------------------------------------------------------- /1.2/phoenix_api/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/mix.lock -------------------------------------------------------------------------------- /1.2/phoenix_api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/package.json -------------------------------------------------------------------------------- /1.2/phoenix_api/priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/priv/gettext/errors.pot -------------------------------------------------------------------------------- /1.2/phoenix_api/priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/priv/repo/seeds.exs -------------------------------------------------------------------------------- /1.2/phoenix_api/test/models/user_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/test/models/user_test.exs -------------------------------------------------------------------------------- /1.2/phoenix_api/test/support/conn_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/test/support/conn_case.ex -------------------------------------------------------------------------------- /1.2/phoenix_api/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start 2 | 3 | Ecto.Adapters.SQL.Sandbox.mode(PhoenixApi.Repo, :manual) 4 | 5 | -------------------------------------------------------------------------------- /1.2/phoenix_api/web/gettext.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/web/gettext.ex -------------------------------------------------------------------------------- /1.2/phoenix_api/web/models/order.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/web/models/order.ex -------------------------------------------------------------------------------- /1.2/phoenix_api/web/models/product.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/web/models/product.ex -------------------------------------------------------------------------------- /1.2/phoenix_api/web/models/user.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/web/models/user.ex -------------------------------------------------------------------------------- /1.2/phoenix_api/web/router.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/web/router.ex -------------------------------------------------------------------------------- /1.2/phoenix_api/web/static/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/web/static/css/app.css -------------------------------------------------------------------------------- /1.2/phoenix_api/web/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/web/static/js/app.js -------------------------------------------------------------------------------- /1.2/phoenix_api/web/static/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/web/static/js/socket.js -------------------------------------------------------------------------------- /1.2/phoenix_api/web/views/email_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/web/views/email_view.ex -------------------------------------------------------------------------------- /1.2/phoenix_api/web/views/error_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/web/views/error_view.ex -------------------------------------------------------------------------------- /1.2/phoenix_api/web/views/layout_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/web/views/layout_view.ex -------------------------------------------------------------------------------- /1.2/phoenix_api/web/views/page_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/web/views/page_view.ex -------------------------------------------------------------------------------- /1.2/phoenix_api/web/web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/phoenix_api/web/web.ex -------------------------------------------------------------------------------- /1.2/rumbl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/.gitignore -------------------------------------------------------------------------------- /1.2/rumbl/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/.idea/misc.xml -------------------------------------------------------------------------------- /1.2/rumbl/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/.idea/modules.xml -------------------------------------------------------------------------------- /1.2/rumbl/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/.idea/workspace.xml -------------------------------------------------------------------------------- /1.2/rumbl/Procfile: -------------------------------------------------------------------------------- 1 | web: MIX_ENV=prod mix phoenix.server 2 | -------------------------------------------------------------------------------- /1.2/rumbl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/README.md -------------------------------------------------------------------------------- /1.2/rumbl/brunch-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/brunch-config.js -------------------------------------------------------------------------------- /1.2/rumbl/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/config/config.exs -------------------------------------------------------------------------------- /1.2/rumbl/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/config/dev.exs -------------------------------------------------------------------------------- /1.2/rumbl/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/config/prod.exs -------------------------------------------------------------------------------- /1.2/rumbl/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/config/test.exs -------------------------------------------------------------------------------- /1.2/rumbl/lib/rumbl.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/lib/rumbl.ex -------------------------------------------------------------------------------- /1.2/rumbl/lib/rumbl/endpoint.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/lib/rumbl/endpoint.ex -------------------------------------------------------------------------------- /1.2/rumbl/lib/rumbl/permalink.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/lib/rumbl/permalink.ex -------------------------------------------------------------------------------- /1.2/rumbl/lib/rumbl/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/lib/rumbl/repo.ex -------------------------------------------------------------------------------- /1.2/rumbl/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/mix.exs -------------------------------------------------------------------------------- /1.2/rumbl/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/mix.lock -------------------------------------------------------------------------------- /1.2/rumbl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/package.json -------------------------------------------------------------------------------- /1.2/rumbl/priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/priv/gettext/errors.pot -------------------------------------------------------------------------------- /1.2/rumbl/priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/priv/repo/seeds.exs -------------------------------------------------------------------------------- /1.2/rumbl/rumbl.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/rumbl.iml -------------------------------------------------------------------------------- /1.2/rumbl/test/controllers/auth_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/test/controllers/auth_test.exs -------------------------------------------------------------------------------- /1.2/rumbl/test/models/annotation_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/test/models/annotation_test.exs -------------------------------------------------------------------------------- /1.2/rumbl/test/models/category_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/test/models/category_test.exs -------------------------------------------------------------------------------- /1.2/rumbl/test/models/user_repo_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/test/models/user_repo_test.exs -------------------------------------------------------------------------------- /1.2/rumbl/test/models/user_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/test/models/user_test.exs -------------------------------------------------------------------------------- /1.2/rumbl/test/models/video_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/test/models/video_test.exs -------------------------------------------------------------------------------- /1.2/rumbl/test/support/channel_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/test/support/channel_case.ex -------------------------------------------------------------------------------- /1.2/rumbl/test/support/conn_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/test/support/conn_case.ex -------------------------------------------------------------------------------- /1.2/rumbl/test/support/model_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/test/support/model_case.ex -------------------------------------------------------------------------------- /1.2/rumbl/test/support/test_helpers.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/test/support/test_helpers.ex -------------------------------------------------------------------------------- /1.2/rumbl/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start 2 | 3 | Ecto.Adapters.SQL.Sandbox.mode(Rumbl.Repo, :manual) 4 | 5 | -------------------------------------------------------------------------------- /1.2/rumbl/test/views/error_view_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/test/views/error_view_test.exs -------------------------------------------------------------------------------- /1.2/rumbl/test/views/layout_view_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/test/views/layout_view_test.exs -------------------------------------------------------------------------------- /1.2/rumbl/test/views/page_view_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/test/views/page_view_test.exs -------------------------------------------------------------------------------- /1.2/rumbl/test/views/video_view_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/test/views/video_view_test.exs -------------------------------------------------------------------------------- /1.2/rumbl/web/channels/user_socket.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/channels/user_socket.ex -------------------------------------------------------------------------------- /1.2/rumbl/web/channels/video_channel.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/channels/video_channel.ex -------------------------------------------------------------------------------- /1.2/rumbl/web/gettext.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/gettext.ex -------------------------------------------------------------------------------- /1.2/rumbl/web/models/annotation.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/models/annotation.ex -------------------------------------------------------------------------------- /1.2/rumbl/web/models/category.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/models/category.ex -------------------------------------------------------------------------------- /1.2/rumbl/web/models/user.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/models/user.ex -------------------------------------------------------------------------------- /1.2/rumbl/web/models/video.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/models/video.ex -------------------------------------------------------------------------------- /1.2/rumbl/web/plugs/auth.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/plugs/auth.ex -------------------------------------------------------------------------------- /1.2/rumbl/web/router.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/router.ex -------------------------------------------------------------------------------- /1.2/rumbl/web/static/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/static/assets/favicon.ico -------------------------------------------------------------------------------- /1.2/rumbl/web/static/assets/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/static/assets/robots.txt -------------------------------------------------------------------------------- /1.2/rumbl/web/static/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/static/css/app.css -------------------------------------------------------------------------------- /1.2/rumbl/web/static/css/phoenix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/static/css/phoenix.css -------------------------------------------------------------------------------- /1.2/rumbl/web/static/css/video.css: -------------------------------------------------------------------------------- 1 | #msg-container { 2 | min-height: 190px; 3 | } 4 | -------------------------------------------------------------------------------- /1.2/rumbl/web/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/static/js/app.js -------------------------------------------------------------------------------- /1.2/rumbl/web/static/js/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/static/js/player.js -------------------------------------------------------------------------------- /1.2/rumbl/web/static/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/static/js/socket.js -------------------------------------------------------------------------------- /1.2/rumbl/web/static/js/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/static/js/video.js -------------------------------------------------------------------------------- /1.2/rumbl/web/templates/user/new.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/templates/user/new.html.eex -------------------------------------------------------------------------------- /1.2/rumbl/web/views/annotation_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/views/annotation_view.ex -------------------------------------------------------------------------------- /1.2/rumbl/web/views/error_helpers.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/views/error_helpers.ex -------------------------------------------------------------------------------- /1.2/rumbl/web/views/error_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/views/error_view.ex -------------------------------------------------------------------------------- /1.2/rumbl/web/views/layout_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/views/layout_view.ex -------------------------------------------------------------------------------- /1.2/rumbl/web/views/page_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/views/page_view.ex -------------------------------------------------------------------------------- /1.2/rumbl/web/views/session_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/views/session_view.ex -------------------------------------------------------------------------------- /1.2/rumbl/web/views/user_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/views/user_view.ex -------------------------------------------------------------------------------- /1.2/rumbl/web/views/video_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/views/video_view.ex -------------------------------------------------------------------------------- /1.2/rumbl/web/views/watch_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/views/watch_view.ex -------------------------------------------------------------------------------- /1.2/rumbl/web/web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.2/rumbl/web/web.ex -------------------------------------------------------------------------------- /1.3/blog_app_gql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/blog_app_gql/.gitignore -------------------------------------------------------------------------------- /1.3/blog_app_gql/.idea/emacs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/blog_app_gql/.idea/emacs.xml -------------------------------------------------------------------------------- /1.3/blog_app_gql/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/blog_app_gql/.idea/misc.xml -------------------------------------------------------------------------------- /1.3/blog_app_gql/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/blog_app_gql/.idea/modules.xml -------------------------------------------------------------------------------- /1.3/blog_app_gql/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/blog_app_gql/.idea/workspace.xml -------------------------------------------------------------------------------- /1.3/blog_app_gql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/blog_app_gql/README.md -------------------------------------------------------------------------------- /1.3/blog_app_gql/blogappgql.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/blog_app_gql/blogappgql.iml -------------------------------------------------------------------------------- /1.3/blog_app_gql/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/blog_app_gql/config/config.exs -------------------------------------------------------------------------------- /1.3/blog_app_gql/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/blog_app_gql/config/dev.exs -------------------------------------------------------------------------------- /1.3/blog_app_gql/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/blog_app_gql/config/prod.exs -------------------------------------------------------------------------------- /1.3/blog_app_gql/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/blog_app_gql/config/test.exs -------------------------------------------------------------------------------- /1.3/blog_app_gql/lib/blog_app_gql/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/blog_app_gql/lib/blog_app_gql/repo.ex -------------------------------------------------------------------------------- /1.3/blog_app_gql/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/blog_app_gql/mix.exs -------------------------------------------------------------------------------- /1.3/blog_app_gql/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/blog_app_gql/mix.lock -------------------------------------------------------------------------------- /1.3/blog_app_gql/priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/blog_app_gql/priv/gettext/errors.pot -------------------------------------------------------------------------------- /1.3/blog_app_gql/priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/blog_app_gql/priv/repo/seeds.exs -------------------------------------------------------------------------------- /1.3/blog_app_gql/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | 3 | Ecto.Adapters.SQL.Sandbox.mode(BlogAppGql.Repo, :manual) 4 | 5 | -------------------------------------------------------------------------------- /1.3/cms_context/.exguard.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/.exguard.exs -------------------------------------------------------------------------------- /1.3/cms_context/.formatter.exs: -------------------------------------------------------------------------------- 1 | [ 2 | inputs: ["mix.exs", "{config,lib,test}/**/*.{ex,exs}"] 3 | ] -------------------------------------------------------------------------------- /1.3/cms_context/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/.gitignore -------------------------------------------------------------------------------- /1.3/cms_context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/README.md -------------------------------------------------------------------------------- /1.3/cms_context/assets/brunch-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/assets/brunch-config.js -------------------------------------------------------------------------------- /1.3/cms_context/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/assets/css/app.css -------------------------------------------------------------------------------- /1.3/cms_context/assets/css/phoenix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/assets/css/phoenix.css -------------------------------------------------------------------------------- /1.3/cms_context/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/assets/js/app.js -------------------------------------------------------------------------------- /1.3/cms_context/assets/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/assets/js/socket.js -------------------------------------------------------------------------------- /1.3/cms_context/assets/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/assets/package-lock.json -------------------------------------------------------------------------------- /1.3/cms_context/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/assets/package.json -------------------------------------------------------------------------------- /1.3/cms_context/assets/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/assets/static/favicon.ico -------------------------------------------------------------------------------- /1.3/cms_context/assets/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/assets/static/robots.txt -------------------------------------------------------------------------------- /1.3/cms_context/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/config/config.exs -------------------------------------------------------------------------------- /1.3/cms_context/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/config/dev.exs -------------------------------------------------------------------------------- /1.3/cms_context/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/config/prod.exs -------------------------------------------------------------------------------- /1.3/cms_context/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/config/test.exs -------------------------------------------------------------------------------- /1.3/cms_context/lib/cms_context.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/lib/cms_context.ex -------------------------------------------------------------------------------- /1.3/cms_context/lib/cms_context/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/lib/cms_context/repo.ex -------------------------------------------------------------------------------- /1.3/cms_context/lib/cms_context_web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/lib/cms_context_web.ex -------------------------------------------------------------------------------- /1.3/cms_context/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/mix.exs -------------------------------------------------------------------------------- /1.3/cms_context/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/mix.lock -------------------------------------------------------------------------------- /1.3/cms_context/priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/priv/gettext/errors.pot -------------------------------------------------------------------------------- /1.3/cms_context/priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/priv/repo/seeds.exs -------------------------------------------------------------------------------- /1.3/cms_context/test/support/conn_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/test/support/conn_case.ex -------------------------------------------------------------------------------- /1.3/cms_context/test/support/data_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/cms_context/test/support/data_case.ex -------------------------------------------------------------------------------- /1.3/cms_context/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | 3 | Ecto.Adapters.SQL.Sandbox.mode(CmsContext.Repo, :manual) 4 | -------------------------------------------------------------------------------- /1.3/hello_world/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/.gitignore -------------------------------------------------------------------------------- /1.3/hello_world/.idea/emacs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/.idea/emacs.xml -------------------------------------------------------------------------------- /1.3/hello_world/.idea/hello_world.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/.idea/hello_world.iml -------------------------------------------------------------------------------- /1.3/hello_world/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/.idea/misc.xml -------------------------------------------------------------------------------- /1.3/hello_world/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/.idea/modules.xml -------------------------------------------------------------------------------- /1.3/hello_world/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/.idea/workspace.xml -------------------------------------------------------------------------------- /1.3/hello_world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/README.md -------------------------------------------------------------------------------- /1.3/hello_world/assets/brunch-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/assets/brunch-config.js -------------------------------------------------------------------------------- /1.3/hello_world/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/assets/css/app.css -------------------------------------------------------------------------------- /1.3/hello_world/assets/css/phoenix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/assets/css/phoenix.css -------------------------------------------------------------------------------- /1.3/hello_world/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/assets/js/app.js -------------------------------------------------------------------------------- /1.3/hello_world/assets/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/assets/js/socket.js -------------------------------------------------------------------------------- /1.3/hello_world/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/assets/package.json -------------------------------------------------------------------------------- /1.3/hello_world/assets/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/assets/static/favicon.ico -------------------------------------------------------------------------------- /1.3/hello_world/assets/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/assets/static/robots.txt -------------------------------------------------------------------------------- /1.3/hello_world/boxfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/boxfile.yml -------------------------------------------------------------------------------- /1.3/hello_world/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/config/config.exs -------------------------------------------------------------------------------- /1.3/hello_world/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/config/dev.exs -------------------------------------------------------------------------------- /1.3/hello_world/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/config/prod.exs -------------------------------------------------------------------------------- /1.3/hello_world/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/config/test.exs -------------------------------------------------------------------------------- /1.3/hello_world/lib/hello_world/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/lib/hello_world/repo.ex -------------------------------------------------------------------------------- /1.3/hello_world/lib/hello_world/web/templates/hello/world.html.eex: -------------------------------------------------------------------------------- 1 |

Hello <%= String.capitalize(@name) %>!

2 | -------------------------------------------------------------------------------- /1.3/hello_world/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/mix.exs -------------------------------------------------------------------------------- /1.3/hello_world/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/mix.lock -------------------------------------------------------------------------------- /1.3/hello_world/priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/priv/gettext/errors.pot -------------------------------------------------------------------------------- /1.3/hello_world/priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/priv/repo/seeds.exs -------------------------------------------------------------------------------- /1.3/hello_world/test/support/conn_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/test/support/conn_case.ex -------------------------------------------------------------------------------- /1.3/hello_world/test/support/data_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/hello_world/test/support/data_case.ex -------------------------------------------------------------------------------- /1.3/hello_world/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | 3 | Ecto.Adapters.SQL.Sandbox.mode(HelloWorld.Repo, :manual) 4 | -------------------------------------------------------------------------------- /1.3/phoenix_api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/phoenix_api/.gitignore -------------------------------------------------------------------------------- /1.3/phoenix_api/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/phoenix_api/.idea/misc.xml -------------------------------------------------------------------------------- /1.3/phoenix_api/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/phoenix_api/.idea/modules.xml -------------------------------------------------------------------------------- /1.3/phoenix_api/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/phoenix_api/.idea/workspace.xml -------------------------------------------------------------------------------- /1.3/phoenix_api/.sobelow: -------------------------------------------------------------------------------- 1 | sobelow-1499357417 -------------------------------------------------------------------------------- /1.3/phoenix_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/phoenix_api/README.md -------------------------------------------------------------------------------- /1.3/phoenix_api/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/phoenix_api/config/config.exs -------------------------------------------------------------------------------- /1.3/phoenix_api/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/phoenix_api/config/dev.exs -------------------------------------------------------------------------------- /1.3/phoenix_api/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/phoenix_api/config/prod.exs -------------------------------------------------------------------------------- /1.3/phoenix_api/config/scout_apm.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/phoenix_api/config/scout_apm.exs -------------------------------------------------------------------------------- /1.3/phoenix_api/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/phoenix_api/config/test.exs -------------------------------------------------------------------------------- /1.3/phoenix_api/lib/phoenix_api/mailer.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/phoenix_api/lib/phoenix_api/mailer.ex -------------------------------------------------------------------------------- /1.3/phoenix_api/lib/phoenix_api/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/phoenix_api/lib/phoenix_api/repo.ex -------------------------------------------------------------------------------- /1.3/phoenix_api/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/phoenix_api/mix.exs -------------------------------------------------------------------------------- /1.3/phoenix_api/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/phoenix_api/mix.lock -------------------------------------------------------------------------------- /1.3/phoenix_api/phoenixapi.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/phoenix_api/phoenixapi.iml -------------------------------------------------------------------------------- /1.3/phoenix_api/priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/phoenix_api/priv/gettext/errors.pot -------------------------------------------------------------------------------- /1.3/phoenix_api/priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/phoenix_api/priv/repo/seeds.exs -------------------------------------------------------------------------------- /1.3/phoenix_api/test/support/conn_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/phoenix_api/test/support/conn_case.ex -------------------------------------------------------------------------------- /1.3/phoenix_api/test/support/data_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/phoenix_api/test/support/data_case.ex -------------------------------------------------------------------------------- /1.3/phoenix_api/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | 3 | Ecto.Adapters.SQL.Sandbox.mode(PhoenixApi.Repo, :manual) 4 | 5 | -------------------------------------------------------------------------------- /1.3/rumbl/.exguard.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/.exguard.exs -------------------------------------------------------------------------------- /1.3/rumbl/.formatter.exs: -------------------------------------------------------------------------------- 1 | [ 2 | inputs: ["mix.exs", "{config,lib,test}/**/*.{ex,exs}"] 3 | ] -------------------------------------------------------------------------------- /1.3/rumbl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/.gitignore -------------------------------------------------------------------------------- /1.3/rumbl/.sobelow: -------------------------------------------------------------------------------- 1 | sobelow-1517220856 -------------------------------------------------------------------------------- /1.3/rumbl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/README.md -------------------------------------------------------------------------------- /1.3/rumbl/assets/brunch-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/assets/brunch-config.js -------------------------------------------------------------------------------- /1.3/rumbl/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/assets/css/app.css -------------------------------------------------------------------------------- /1.3/rumbl/assets/css/phoenix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/assets/css/phoenix.css -------------------------------------------------------------------------------- /1.3/rumbl/assets/css/video.css: -------------------------------------------------------------------------------- 1 | #msg-container { 2 | min-height: 190px; 3 | } -------------------------------------------------------------------------------- /1.3/rumbl/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/assets/js/app.js -------------------------------------------------------------------------------- /1.3/rumbl/assets/js/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/assets/js/player.js -------------------------------------------------------------------------------- /1.3/rumbl/assets/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/assets/js/socket.js -------------------------------------------------------------------------------- /1.3/rumbl/assets/js/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/assets/js/video.js -------------------------------------------------------------------------------- /1.3/rumbl/assets/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/assets/package-lock.json -------------------------------------------------------------------------------- /1.3/rumbl/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/assets/package.json -------------------------------------------------------------------------------- /1.3/rumbl/assets/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/assets/static/favicon.ico -------------------------------------------------------------------------------- /1.3/rumbl/assets/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/assets/static/robots.txt -------------------------------------------------------------------------------- /1.3/rumbl/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/config/config.exs -------------------------------------------------------------------------------- /1.3/rumbl/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/config/dev.exs -------------------------------------------------------------------------------- /1.3/rumbl/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/config/prod.exs -------------------------------------------------------------------------------- /1.3/rumbl/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/config/test.exs -------------------------------------------------------------------------------- /1.3/rumbl/lib/rumbl.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/lib/rumbl.ex -------------------------------------------------------------------------------- /1.3/rumbl/lib/rumbl/accounts/accounts.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/lib/rumbl/accounts/accounts.ex -------------------------------------------------------------------------------- /1.3/rumbl/lib/rumbl/accounts/auth/auth.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/lib/rumbl/accounts/auth/auth.ex -------------------------------------------------------------------------------- /1.3/rumbl/lib/rumbl/accounts/user.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/lib/rumbl/accounts/user.ex -------------------------------------------------------------------------------- /1.3/rumbl/lib/rumbl/application.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/lib/rumbl/application.ex -------------------------------------------------------------------------------- /1.3/rumbl/lib/rumbl/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/lib/rumbl/repo.ex -------------------------------------------------------------------------------- /1.3/rumbl/lib/rumbl/videos/annotation.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/lib/rumbl/videos/annotation.ex -------------------------------------------------------------------------------- /1.3/rumbl/lib/rumbl/videos/category.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/lib/rumbl/videos/category.ex -------------------------------------------------------------------------------- /1.3/rumbl/lib/rumbl/videos/permalink.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/lib/rumbl/videos/permalink.ex -------------------------------------------------------------------------------- /1.3/rumbl/lib/rumbl/videos/video.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/lib/rumbl/videos/video.ex -------------------------------------------------------------------------------- /1.3/rumbl/lib/rumbl/videos/videos.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/lib/rumbl/videos/videos.ex -------------------------------------------------------------------------------- /1.3/rumbl/lib/rumbl_web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/lib/rumbl_web.ex -------------------------------------------------------------------------------- /1.3/rumbl/lib/rumbl_web/endpoint.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/lib/rumbl_web/endpoint.ex -------------------------------------------------------------------------------- /1.3/rumbl/lib/rumbl_web/gettext.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/lib/rumbl_web/gettext.ex -------------------------------------------------------------------------------- /1.3/rumbl/lib/rumbl_web/router.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/lib/rumbl_web/router.ex -------------------------------------------------------------------------------- /1.3/rumbl/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/mix.exs -------------------------------------------------------------------------------- /1.3/rumbl/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/mix.lock -------------------------------------------------------------------------------- /1.3/rumbl/priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/priv/gettext/errors.pot -------------------------------------------------------------------------------- /1.3/rumbl/priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/priv/repo/seeds.exs -------------------------------------------------------------------------------- /1.3/rumbl/test/support/channel_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/test/support/channel_case.ex -------------------------------------------------------------------------------- /1.3/rumbl/test/support/conn_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/test/support/conn_case.ex -------------------------------------------------------------------------------- /1.3/rumbl/test/support/data_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/test/support/data_case.ex -------------------------------------------------------------------------------- /1.3/rumbl/test/support/test_helpers.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/test/support/test_helpers.ex -------------------------------------------------------------------------------- /1.3/rumbl/test/test_helper.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/rumbl/test/test_helper.exs -------------------------------------------------------------------------------- /1.3/umbrella_docker/.dockerignore: -------------------------------------------------------------------------------- 1 | _build 2 | deps 3 | assets/node_modules 4 | test 5 | -------------------------------------------------------------------------------- /1.3/umbrella_docker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/umbrella_docker/.gitignore -------------------------------------------------------------------------------- /1.3/umbrella_docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/umbrella_docker/Dockerfile -------------------------------------------------------------------------------- /1.3/umbrella_docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/umbrella_docker/README.md -------------------------------------------------------------------------------- /1.3/umbrella_docker/apps/greeter/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/umbrella_docker/apps/greeter/mix.exs -------------------------------------------------------------------------------- /1.3/umbrella_docker/apps/greeter/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /1.3/umbrella_docker/apps/phoenix_app/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | 3 | -------------------------------------------------------------------------------- /1.3/umbrella_docker/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/umbrella_docker/config/config.exs -------------------------------------------------------------------------------- /1.3/umbrella_docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/umbrella_docker/docker-compose.yml -------------------------------------------------------------------------------- /1.3/umbrella_docker/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/umbrella_docker/mix.exs -------------------------------------------------------------------------------- /1.3/umbrella_docker/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/umbrella_docker/mix.lock -------------------------------------------------------------------------------- /1.3/umbrella_docker/rel/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/umbrella_docker/rel/config.exs -------------------------------------------------------------------------------- /1.3/umbrella_docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.3/umbrella_docker/run.sh -------------------------------------------------------------------------------- /1.4/github_liveview/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/github_liveview/.formatter.exs -------------------------------------------------------------------------------- /1.4/github_liveview/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/github_liveview/.gitignore -------------------------------------------------------------------------------- /1.4/github_liveview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/github_liveview/README.md -------------------------------------------------------------------------------- /1.4/github_liveview/assets/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/github_liveview/assets/.babelrc -------------------------------------------------------------------------------- /1.4/github_liveview/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/github_liveview/assets/css/app.css -------------------------------------------------------------------------------- /1.4/github_liveview/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/github_liveview/assets/js/app.js -------------------------------------------------------------------------------- /1.4/github_liveview/assets/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/github_liveview/assets/js/socket.js -------------------------------------------------------------------------------- /1.4/github_liveview/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/github_liveview/assets/package.json -------------------------------------------------------------------------------- /1.4/github_liveview/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/github_liveview/config/config.exs -------------------------------------------------------------------------------- /1.4/github_liveview/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/github_liveview/config/dev.exs -------------------------------------------------------------------------------- /1.4/github_liveview/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/github_liveview/config/prod.exs -------------------------------------------------------------------------------- /1.4/github_liveview/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/github_liveview/config/test.exs -------------------------------------------------------------------------------- /1.4/github_liveview/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/github_liveview/mix.exs -------------------------------------------------------------------------------- /1.4/github_liveview/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/github_liveview/mix.lock -------------------------------------------------------------------------------- /1.4/github_liveview/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /1.4/hello/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.formatter.exs -------------------------------------------------------------------------------- /1.4/hello/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.gitignore -------------------------------------------------------------------------------- /1.4/hello/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/encodings.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/benchee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/benchee.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/connection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/connection.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/coverex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/coverex.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/cowboy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/cowboy.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/cowlib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/cowlib.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/decimal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/decimal.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/dialyxir.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/dialyxir.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/dialyze.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/dialyze.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/earmark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/earmark.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/ecto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/ecto.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/ecto_sql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/ecto_sql.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/erlang_pmp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/erlang_pmp.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/ex_doc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/ex_doc.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/file_system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/file_system.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/gettext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/gettext.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/hackney.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/hackney.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/inch_ex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/inch_ex.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/jason.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/jason.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/kadabra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/kadabra.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/mariaex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/mariaex.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/mime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/mime.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/phoenix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/phoenix.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/plug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/plug.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/plug_cowboy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/plug_cowboy.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/plug_crypto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/plug_crypto.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/poison.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/poison.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/postgrex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/postgrex.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/ranch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/ranch.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/libraries/telemetry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/libraries/telemetry.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/misc.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/modules.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/vcs.xml -------------------------------------------------------------------------------- /1.4/hello/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/.idea/workspace.xml -------------------------------------------------------------------------------- /1.4/hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/README.md -------------------------------------------------------------------------------- /1.4/hello/assets/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/assets/.babelrc -------------------------------------------------------------------------------- /1.4/hello/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/assets/css/app.css -------------------------------------------------------------------------------- /1.4/hello/assets/css/phoenix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/assets/css/phoenix.css -------------------------------------------------------------------------------- /1.4/hello/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/assets/js/app.js -------------------------------------------------------------------------------- /1.4/hello/assets/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/assets/js/socket.js -------------------------------------------------------------------------------- /1.4/hello/assets/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/assets/package-lock.json -------------------------------------------------------------------------------- /1.4/hello/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/assets/package.json -------------------------------------------------------------------------------- /1.4/hello/assets/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/assets/static/favicon.ico -------------------------------------------------------------------------------- /1.4/hello/assets/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/assets/static/robots.txt -------------------------------------------------------------------------------- /1.4/hello/assets/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/assets/webpack.config.js -------------------------------------------------------------------------------- /1.4/hello/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/config/config.exs -------------------------------------------------------------------------------- /1.4/hello/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/config/dev.exs -------------------------------------------------------------------------------- /1.4/hello/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/config/prod.exs -------------------------------------------------------------------------------- /1.4/hello/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/config/test.exs -------------------------------------------------------------------------------- /1.4/hello/hello.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/hello.iml -------------------------------------------------------------------------------- /1.4/hello/lib/hello.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/lib/hello.ex -------------------------------------------------------------------------------- /1.4/hello/lib/hello/application.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/lib/hello/application.ex -------------------------------------------------------------------------------- /1.4/hello/lib/hello/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/lib/hello/repo.ex -------------------------------------------------------------------------------- /1.4/hello/lib/hello_web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/lib/hello_web.ex -------------------------------------------------------------------------------- /1.4/hello/lib/hello_web/endpoint.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/lib/hello_web/endpoint.ex -------------------------------------------------------------------------------- /1.4/hello/lib/hello_web/gettext.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/lib/hello_web/gettext.ex -------------------------------------------------------------------------------- /1.4/hello/lib/hello_web/router.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/lib/hello_web/router.ex -------------------------------------------------------------------------------- /1.4/hello/lib/hello_web/templates/hello/world.html.eex: -------------------------------------------------------------------------------- 1 |

Hello <%= String.capitalize(@name) %>!

-------------------------------------------------------------------------------- /1.4/hello/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/mix.exs -------------------------------------------------------------------------------- /1.4/hello/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/mix.lock -------------------------------------------------------------------------------- /1.4/hello/priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/priv/gettext/errors.pot -------------------------------------------------------------------------------- /1.4/hello/priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/priv/repo/seeds.exs -------------------------------------------------------------------------------- /1.4/hello/test/support/channel_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/test/support/channel_case.ex -------------------------------------------------------------------------------- /1.4/hello/test/support/conn_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/test/support/conn_case.ex -------------------------------------------------------------------------------- /1.4/hello/test/support/data_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello/test/support/data_case.ex -------------------------------------------------------------------------------- /1.4/hello/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | Ecto.Adapters.SQL.Sandbox.mode(Hello.Repo, :manual) 3 | -------------------------------------------------------------------------------- /1.4/hello_sockets/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello_sockets/.formatter.exs -------------------------------------------------------------------------------- /1.4/hello_sockets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello_sockets/.gitignore -------------------------------------------------------------------------------- /1.4/hello_sockets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello_sockets/README.md -------------------------------------------------------------------------------- /1.4/hello_sockets/assets/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello_sockets/assets/.babelrc -------------------------------------------------------------------------------- /1.4/hello_sockets/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello_sockets/assets/css/app.css -------------------------------------------------------------------------------- /1.4/hello_sockets/assets/css/phoenix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello_sockets/assets/css/phoenix.css -------------------------------------------------------------------------------- /1.4/hello_sockets/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello_sockets/assets/js/app.js -------------------------------------------------------------------------------- /1.4/hello_sockets/assets/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello_sockets/assets/js/socket.js -------------------------------------------------------------------------------- /1.4/hello_sockets/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello_sockets/assets/package.json -------------------------------------------------------------------------------- /1.4/hello_sockets/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello_sockets/config/config.exs -------------------------------------------------------------------------------- /1.4/hello_sockets/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello_sockets/config/dev.exs -------------------------------------------------------------------------------- /1.4/hello_sockets/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello_sockets/config/prod.exs -------------------------------------------------------------------------------- /1.4/hello_sockets/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello_sockets/config/test.exs -------------------------------------------------------------------------------- /1.4/hello_sockets/lib/hello_sockets.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello_sockets/lib/hello_sockets.ex -------------------------------------------------------------------------------- /1.4/hello_sockets/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello_sockets/mix.exs -------------------------------------------------------------------------------- /1.4/hello_sockets/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello_sockets/mix.lock -------------------------------------------------------------------------------- /1.4/hello_sockets/priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/hello_sockets/priv/gettext/errors.pot -------------------------------------------------------------------------------- /1.4/hello_sockets/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /1.4/islands_engine/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/islands_engine/.formatter.exs -------------------------------------------------------------------------------- /1.4/islands_engine/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/islands_engine/.gitignore -------------------------------------------------------------------------------- /1.4/islands_engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/islands_engine/README.md -------------------------------------------------------------------------------- /1.4/islands_engine/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/islands_engine/config/config.exs -------------------------------------------------------------------------------- /1.4/islands_engine/lib/islands_engine.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/islands_engine/lib/islands_engine.ex -------------------------------------------------------------------------------- /1.4/islands_engine/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/islands_engine/mix.exs -------------------------------------------------------------------------------- /1.4/islands_engine/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /1.4/islands_interface/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/islands_interface/.formatter.exs -------------------------------------------------------------------------------- /1.4/islands_interface/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/islands_interface/.gitignore -------------------------------------------------------------------------------- /1.4/islands_interface/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/islands_interface/README.md -------------------------------------------------------------------------------- /1.4/islands_interface/assets/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/islands_interface/assets/.babelrc -------------------------------------------------------------------------------- /1.4/islands_interface/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/islands_interface/assets/css/app.css -------------------------------------------------------------------------------- /1.4/islands_interface/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/islands_interface/assets/js/app.js -------------------------------------------------------------------------------- /1.4/islands_interface/assets/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/islands_interface/assets/js/socket.js -------------------------------------------------------------------------------- /1.4/islands_interface/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/islands_interface/assets/package.json -------------------------------------------------------------------------------- /1.4/islands_interface/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/islands_interface/config/config.exs -------------------------------------------------------------------------------- /1.4/islands_interface/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/islands_interface/config/dev.exs -------------------------------------------------------------------------------- /1.4/islands_interface/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/islands_interface/config/prod.exs -------------------------------------------------------------------------------- /1.4/islands_interface/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/islands_interface/config/test.exs -------------------------------------------------------------------------------- /1.4/islands_interface/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/islands_interface/mix.exs -------------------------------------------------------------------------------- /1.4/islands_interface/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/islands_interface/mix.lock -------------------------------------------------------------------------------- /1.4/islands_interface/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /1.4/minitwitter/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/.formatter.exs -------------------------------------------------------------------------------- /1.4/minitwitter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/.gitignore -------------------------------------------------------------------------------- /1.4/minitwitter/.idea/minitwitter.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/.idea/minitwitter.iml -------------------------------------------------------------------------------- /1.4/minitwitter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/README.md -------------------------------------------------------------------------------- /1.4/minitwitter/assets/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/assets/.babelrc -------------------------------------------------------------------------------- /1.4/minitwitter/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/assets/css/app.css -------------------------------------------------------------------------------- /1.4/minitwitter/assets/css/phoenix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/assets/css/phoenix.css -------------------------------------------------------------------------------- /1.4/minitwitter/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/assets/js/app.js -------------------------------------------------------------------------------- /1.4/minitwitter/assets/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/assets/js/socket.js -------------------------------------------------------------------------------- /1.4/minitwitter/assets/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/assets/package-lock.json -------------------------------------------------------------------------------- /1.4/minitwitter/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/assets/package.json -------------------------------------------------------------------------------- /1.4/minitwitter/assets/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/assets/static/favicon.ico -------------------------------------------------------------------------------- /1.4/minitwitter/assets/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/assets/static/robots.txt -------------------------------------------------------------------------------- /1.4/minitwitter/assets/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/assets/webpack.config.js -------------------------------------------------------------------------------- /1.4/minitwitter/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/config/config.exs -------------------------------------------------------------------------------- /1.4/minitwitter/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/config/dev.exs -------------------------------------------------------------------------------- /1.4/minitwitter/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/config/prod.exs -------------------------------------------------------------------------------- /1.4/minitwitter/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/config/test.exs -------------------------------------------------------------------------------- /1.4/minitwitter/lib/minitwitter.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/lib/minitwitter.ex -------------------------------------------------------------------------------- /1.4/minitwitter/lib/minitwitter/mailer.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/lib/minitwitter/mailer.ex -------------------------------------------------------------------------------- /1.4/minitwitter/lib/minitwitter/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/lib/minitwitter/repo.ex -------------------------------------------------------------------------------- /1.4/minitwitter/lib/minitwitter_web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/lib/minitwitter_web.ex -------------------------------------------------------------------------------- /1.4/minitwitter/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/mix.exs -------------------------------------------------------------------------------- /1.4/minitwitter/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/mix.lock -------------------------------------------------------------------------------- /1.4/minitwitter/priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/priv/gettext/errors.pot -------------------------------------------------------------------------------- /1.4/minitwitter/priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/priv/repo/seeds.exs -------------------------------------------------------------------------------- /1.4/minitwitter/test/support/conn_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/test/support/conn_case.ex -------------------------------------------------------------------------------- /1.4/minitwitter/test/support/data_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/test/support/data_case.ex -------------------------------------------------------------------------------- /1.4/minitwitter/test/test_helper.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/minitwitter/test/test_helper.exs -------------------------------------------------------------------------------- /1.4/phoenix_ml/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/.formatter.exs -------------------------------------------------------------------------------- /1.4/phoenix_ml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/.gitignore -------------------------------------------------------------------------------- /1.4/phoenix_ml/.idea/phoenix_ml.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/.idea/phoenix_ml.iml -------------------------------------------------------------------------------- /1.4/phoenix_ml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/README.md -------------------------------------------------------------------------------- /1.4/phoenix_ml/assets/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/assets/.babelrc -------------------------------------------------------------------------------- /1.4/phoenix_ml/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/assets/css/app.css -------------------------------------------------------------------------------- /1.4/phoenix_ml/assets/css/phoenix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/assets/css/phoenix.css -------------------------------------------------------------------------------- /1.4/phoenix_ml/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/assets/js/app.js -------------------------------------------------------------------------------- /1.4/phoenix_ml/assets/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/assets/js/socket.js -------------------------------------------------------------------------------- /1.4/phoenix_ml/assets/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/assets/package-lock.json -------------------------------------------------------------------------------- /1.4/phoenix_ml/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/assets/package.json -------------------------------------------------------------------------------- /1.4/phoenix_ml/assets/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/assets/static/favicon.ico -------------------------------------------------------------------------------- /1.4/phoenix_ml/assets/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/assets/static/robots.txt -------------------------------------------------------------------------------- /1.4/phoenix_ml/assets/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/assets/webpack.config.js -------------------------------------------------------------------------------- /1.4/phoenix_ml/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/config/config.exs -------------------------------------------------------------------------------- /1.4/phoenix_ml/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/config/dev.exs -------------------------------------------------------------------------------- /1.4/phoenix_ml/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/config/prod.exs -------------------------------------------------------------------------------- /1.4/phoenix_ml/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/config/test.exs -------------------------------------------------------------------------------- /1.4/phoenix_ml/lib/phoenix_ml.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/lib/phoenix_ml.ex -------------------------------------------------------------------------------- /1.4/phoenix_ml/lib/phoenix_ml_web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/lib/phoenix_ml_web.ex -------------------------------------------------------------------------------- /1.4/phoenix_ml/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/mix.exs -------------------------------------------------------------------------------- /1.4/phoenix_ml/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/mix.lock -------------------------------------------------------------------------------- /1.4/phoenix_ml/priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/priv/gettext/errors.pot -------------------------------------------------------------------------------- /1.4/phoenix_ml/test/support/conn_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/phoenix_ml/test/support/conn_case.ex -------------------------------------------------------------------------------- /1.4/phoenix_ml/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /1.4/plateslate/assets/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/plateslate/assets/.babelrc -------------------------------------------------------------------------------- /1.4/plateslate/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/plateslate/assets/css/app.css -------------------------------------------------------------------------------- /1.4/plateslate/assets/css/phoenix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/plateslate/assets/css/phoenix.css -------------------------------------------------------------------------------- /1.4/plateslate/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/plateslate/assets/js/app.js -------------------------------------------------------------------------------- /1.4/plateslate/assets/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/plateslate/assets/js/socket.js -------------------------------------------------------------------------------- /1.4/plateslate/assets/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/plateslate/assets/package-lock.json -------------------------------------------------------------------------------- /1.4/plateslate/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/plateslate/assets/package.json -------------------------------------------------------------------------------- /1.4/plateslate/assets/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/plateslate/assets/static/favicon.ico -------------------------------------------------------------------------------- /1.4/plateslate/assets/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/plateslate/assets/static/robots.txt -------------------------------------------------------------------------------- /1.4/plateslate/assets/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/plateslate/assets/webpack.config.js -------------------------------------------------------------------------------- /1.4/plateslate/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/plateslate/config/config.exs -------------------------------------------------------------------------------- /1.4/plateslate/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/plateslate/config/dev.exs -------------------------------------------------------------------------------- /1.4/plateslate/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/plateslate/config/prod.exs -------------------------------------------------------------------------------- /1.4/plateslate/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/plateslate/config/test.exs -------------------------------------------------------------------------------- /1.4/plateslate/lib/plateslate.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/plateslate/lib/plateslate.ex -------------------------------------------------------------------------------- /1.4/plateslate/lib/plateslate/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/plateslate/lib/plateslate/repo.ex -------------------------------------------------------------------------------- /1.4/plateslate/lib/plateslate_web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/plateslate/lib/plateslate_web.ex -------------------------------------------------------------------------------- /1.4/plateslate/priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/plateslate/priv/gettext/errors.pot -------------------------------------------------------------------------------- /1.4/plateslate/priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/plateslate/priv/repo/seeds.exs -------------------------------------------------------------------------------- /1.4/plateslate/test/plateslate_web/controllers/page_controller_test.exs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /1.4/plateslate/test/plateslate_web/views/error_view_test.exs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /1.4/plateslate/test/plateslate_web/views/layout_view_test.exs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /1.4/plateslate/test/plateslate_web/views/page_view_test.exs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /1.4/plateslate/test/support/conn_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/plateslate/test/support/conn_case.ex -------------------------------------------------------------------------------- /1.4/plateslate/test/support/data_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/plateslate/test/support/data_case.ex -------------------------------------------------------------------------------- /1.4/plateslate/test/test_helper.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/plateslate/test/test_helper.exs -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/bcrypt_elixir/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/bcrypt_elixir/priv: -------------------------------------------------------------------------------- 1 | ../../../../../deps/bcrypt_elixir/priv -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/comeonin/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/connection/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/cowboy/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/cowboy/ebin: -------------------------------------------------------------------------------- 1 | ../../../../../deps/cowboy/ebin -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/cowlib/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/cowlib/ebin: -------------------------------------------------------------------------------- 1 | ../../../../../deps/cowlib/ebin -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/cowlib/include: -------------------------------------------------------------------------------- 1 | ../../../../../deps/cowlib/include -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/cowlib/mix.rebar.config: -------------------------------------------------------------------------------- 1 | {overrides,[]}. 2 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/db_connection/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/decimal/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/ecto/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/ecto_sql/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/elixir_make/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/faker/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/gettext/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/jason/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/mariaex/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/mime/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/mime/priv: -------------------------------------------------------------------------------- 1 | ../../../../../deps/mime/priv -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/pbkdf2_elixir/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/phoenix/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/phoenix/priv: -------------------------------------------------------------------------------- 1 | ../../../../../deps/phoenix/priv -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/phoenix_ecto/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/phoenix_html/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/phoenix_html/priv: -------------------------------------------------------------------------------- 1 | ../../../../../deps/phoenix_html/priv -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/phoenix_pubsub/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/plug/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/plug_cowboy/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/plug_crypto/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/ranch/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/ranch/ebin: -------------------------------------------------------------------------------- 1 | ../../../../../deps/ranch/ebin -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/ranch/mix.rebar.config: -------------------------------------------------------------------------------- 1 | {overrides,[]}. 2 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/rumbl/.compile_priv_gettext: -------------------------------------------------------------------------------- 1 | priv/gettext/en/LC_MESSAGES/errors.po 2 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/rumbl/.mix/compile.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/rumbl/priv: -------------------------------------------------------------------------------- 1 | ../../../../../priv -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/sweet_xml/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.elixir_ls/build/test/lib/telemetry/.mix/compile.fetch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.4/rumbl/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/.formatter.exs -------------------------------------------------------------------------------- /1.4/rumbl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/.gitignore -------------------------------------------------------------------------------- /1.4/rumbl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/README.md -------------------------------------------------------------------------------- /1.4/rumbl/assets/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/assets/.babelrc -------------------------------------------------------------------------------- /1.4/rumbl/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/assets/css/app.css -------------------------------------------------------------------------------- /1.4/rumbl/assets/css/phoenix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/assets/css/phoenix.css -------------------------------------------------------------------------------- /1.4/rumbl/assets/css/video.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/assets/css/video.css -------------------------------------------------------------------------------- /1.4/rumbl/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/assets/js/app.js -------------------------------------------------------------------------------- /1.4/rumbl/assets/js/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/assets/js/player.js -------------------------------------------------------------------------------- /1.4/rumbl/assets/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/assets/js/socket.js -------------------------------------------------------------------------------- /1.4/rumbl/assets/js/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/assets/js/video.js -------------------------------------------------------------------------------- /1.4/rumbl/assets/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/assets/package-lock.json -------------------------------------------------------------------------------- /1.4/rumbl/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/assets/package.json -------------------------------------------------------------------------------- /1.4/rumbl/assets/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/assets/static/favicon.ico -------------------------------------------------------------------------------- /1.4/rumbl/assets/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/assets/static/robots.txt -------------------------------------------------------------------------------- /1.4/rumbl/assets/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/assets/webpack.config.js -------------------------------------------------------------------------------- /1.4/rumbl/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/config/config.exs -------------------------------------------------------------------------------- /1.4/rumbl/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/config/dev.exs -------------------------------------------------------------------------------- /1.4/rumbl/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/config/prod.exs -------------------------------------------------------------------------------- /1.4/rumbl/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/config/test.exs -------------------------------------------------------------------------------- /1.4/rumbl/lib/rumbl.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/lib/rumbl.ex -------------------------------------------------------------------------------- /1.4/rumbl/lib/rumbl/accounts/accounts.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/lib/rumbl/accounts/accounts.ex -------------------------------------------------------------------------------- /1.4/rumbl/lib/rumbl/accounts/user.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/lib/rumbl/accounts/user.ex -------------------------------------------------------------------------------- /1.4/rumbl/lib/rumbl/application.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/lib/rumbl/application.ex -------------------------------------------------------------------------------- /1.4/rumbl/lib/rumbl/info_sys/backend.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/lib/rumbl/info_sys/backend.ex -------------------------------------------------------------------------------- /1.4/rumbl/lib/rumbl/info_sys/cache.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/lib/rumbl/info_sys/cache.ex -------------------------------------------------------------------------------- /1.4/rumbl/lib/rumbl/info_sys/info_sys.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/lib/rumbl/info_sys/info_sys.ex -------------------------------------------------------------------------------- /1.4/rumbl/lib/rumbl/info_sys/wolfram.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/lib/rumbl/info_sys/wolfram.ex -------------------------------------------------------------------------------- /1.4/rumbl/lib/rumbl/multimedia/video.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/lib/rumbl/multimedia/video.ex -------------------------------------------------------------------------------- /1.4/rumbl/lib/rumbl/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/lib/rumbl/repo.ex -------------------------------------------------------------------------------- /1.4/rumbl/lib/rumbl_web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/lib/rumbl_web.ex -------------------------------------------------------------------------------- /1.4/rumbl/lib/rumbl_web/endpoint.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/lib/rumbl_web/endpoint.ex -------------------------------------------------------------------------------- /1.4/rumbl/lib/rumbl_web/gettext.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/lib/rumbl_web/gettext.ex -------------------------------------------------------------------------------- /1.4/rumbl/lib/rumbl_web/router.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/lib/rumbl_web/router.ex -------------------------------------------------------------------------------- /1.4/rumbl/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/mix.exs -------------------------------------------------------------------------------- /1.4/rumbl/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/mix.lock -------------------------------------------------------------------------------- /1.4/rumbl/priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/priv/gettext/errors.pot -------------------------------------------------------------------------------- /1.4/rumbl/priv/repo/backend_seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/priv/repo/backend_seeds.exs -------------------------------------------------------------------------------- /1.4/rumbl/priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/priv/repo/seeds.exs -------------------------------------------------------------------------------- /1.4/rumbl/rumbl.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/rumbl.iml -------------------------------------------------------------------------------- /1.4/rumbl/test/support/channel_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/test/support/channel_case.ex -------------------------------------------------------------------------------- /1.4/rumbl/test/support/conn_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/test/support/conn_case.ex -------------------------------------------------------------------------------- /1.4/rumbl/test/support/data_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/test/support/data_case.ex -------------------------------------------------------------------------------- /1.4/rumbl/test/support/test_helpers.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/test/support/test_helpers.ex -------------------------------------------------------------------------------- /1.4/rumbl/test/test_helper.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbl/test/test_helper.exs -------------------------------------------------------------------------------- /1.4/rumbrella/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbrella/.formatter.exs -------------------------------------------------------------------------------- /1.4/rumbrella/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbrella/.gitignore -------------------------------------------------------------------------------- /1.4/rumbrella/README.md: -------------------------------------------------------------------------------- 1 | # Rumbrella 2 | 3 | **TODO: Add description** 4 | 5 | -------------------------------------------------------------------------------- /1.4/rumbrella/apps/info_sys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbrella/apps/info_sys/.gitignore -------------------------------------------------------------------------------- /1.4/rumbrella/apps/info_sys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbrella/apps/info_sys/README.md -------------------------------------------------------------------------------- /1.4/rumbrella/apps/info_sys/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbrella/apps/info_sys/mix.exs -------------------------------------------------------------------------------- /1.4/rumbrella/apps/info_sys/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /1.4/rumbrella/apps/rumbl/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbrella/apps/rumbl/.formatter.exs -------------------------------------------------------------------------------- /1.4/rumbrella/apps/rumbl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbrella/apps/rumbl/.gitignore -------------------------------------------------------------------------------- /1.4/rumbrella/apps/rumbl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbrella/apps/rumbl/README.md -------------------------------------------------------------------------------- /1.4/rumbrella/apps/rumbl/assets/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbrella/apps/rumbl/assets/.babelrc -------------------------------------------------------------------------------- /1.4/rumbrella/apps/rumbl/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbrella/apps/rumbl/assets/js/app.js -------------------------------------------------------------------------------- /1.4/rumbrella/apps/rumbl/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbrella/apps/rumbl/config/dev.exs -------------------------------------------------------------------------------- /1.4/rumbrella/apps/rumbl/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbrella/apps/rumbl/config/prod.exs -------------------------------------------------------------------------------- /1.4/rumbrella/apps/rumbl/lib/rumbl.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbrella/apps/rumbl/lib/rumbl.ex -------------------------------------------------------------------------------- /1.4/rumbrella/apps/rumbl/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbrella/apps/rumbl/mix.exs -------------------------------------------------------------------------------- /1.4/rumbrella/apps/rumbl/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbrella/apps/rumbl/mix.lock -------------------------------------------------------------------------------- /1.4/rumbrella/apps/rumbl/rumbl.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbrella/apps/rumbl/rumbl.iml -------------------------------------------------------------------------------- /1.4/rumbrella/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbrella/config/config.exs -------------------------------------------------------------------------------- /1.4/rumbrella/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbrella/mix.exs -------------------------------------------------------------------------------- /1.4/rumbrella/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/rumbrella/mix.lock -------------------------------------------------------------------------------- /1.4/the_score/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/.formatter.exs -------------------------------------------------------------------------------- /1.4/the_score/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/.gitignore -------------------------------------------------------------------------------- /1.4/the_score/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/README.md -------------------------------------------------------------------------------- /1.4/the_score/assets/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/assets/.babelrc -------------------------------------------------------------------------------- /1.4/the_score/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/assets/css/app.css -------------------------------------------------------------------------------- /1.4/the_score/assets/css/phoenix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/assets/css/phoenix.css -------------------------------------------------------------------------------- /1.4/the_score/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/assets/js/app.js -------------------------------------------------------------------------------- /1.4/the_score/assets/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/assets/js/socket.js -------------------------------------------------------------------------------- /1.4/the_score/assets/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/assets/package-lock.json -------------------------------------------------------------------------------- /1.4/the_score/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/assets/package.json -------------------------------------------------------------------------------- /1.4/the_score/assets/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/assets/static/robots.txt -------------------------------------------------------------------------------- /1.4/the_score/assets/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/assets/webpack.config.js -------------------------------------------------------------------------------- /1.4/the_score/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/config/config.exs -------------------------------------------------------------------------------- /1.4/the_score/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/config/dev.exs -------------------------------------------------------------------------------- /1.4/the_score/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/config/prod.exs -------------------------------------------------------------------------------- /1.4/the_score/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/config/test.exs -------------------------------------------------------------------------------- /1.4/the_score/lib/the_score.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/lib/the_score.ex -------------------------------------------------------------------------------- /1.4/the_score/lib/the_score/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/lib/the_score/repo.ex -------------------------------------------------------------------------------- /1.4/the_score/lib/the_score_web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/lib/the_score_web.ex -------------------------------------------------------------------------------- /1.4/the_score/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/mix.exs -------------------------------------------------------------------------------- /1.4/the_score/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/mix.lock -------------------------------------------------------------------------------- /1.4/the_score/priv/data/rushing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/priv/data/rushing.json -------------------------------------------------------------------------------- /1.4/the_score/priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/priv/gettext/errors.pot -------------------------------------------------------------------------------- /1.4/the_score/priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/the_score/priv/repo/seeds.exs -------------------------------------------------------------------------------- /1.4/the_score/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | Ecto.Adapters.SQL.Sandbox.mode(TheScore.Repo, :manual) 3 | -------------------------------------------------------------------------------- /1.4/user_liveview/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/user_liveview/.formatter.exs -------------------------------------------------------------------------------- /1.4/user_liveview/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/user_liveview/.gitignore -------------------------------------------------------------------------------- /1.4/user_liveview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/user_liveview/README.md -------------------------------------------------------------------------------- /1.4/user_liveview/assets/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/user_liveview/assets/.babelrc -------------------------------------------------------------------------------- /1.4/user_liveview/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/user_liveview/assets/css/app.css -------------------------------------------------------------------------------- /1.4/user_liveview/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/user_liveview/assets/js/app.js -------------------------------------------------------------------------------- /1.4/user_liveview/assets/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/user_liveview/assets/js/socket.js -------------------------------------------------------------------------------- /1.4/user_liveview/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/user_liveview/assets/package.json -------------------------------------------------------------------------------- /1.4/user_liveview/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/user_liveview/config/config.exs -------------------------------------------------------------------------------- /1.4/user_liveview/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/user_liveview/config/dev.exs -------------------------------------------------------------------------------- /1.4/user_liveview/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/user_liveview/config/prod.exs -------------------------------------------------------------------------------- /1.4/user_liveview/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/user_liveview/config/test.exs -------------------------------------------------------------------------------- /1.4/user_liveview/lib/user_liveview.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/user_liveview/lib/user_liveview.ex -------------------------------------------------------------------------------- /1.4/user_liveview/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/user_liveview/mix.exs -------------------------------------------------------------------------------- /1.4/user_liveview/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/user_liveview/mix.lock -------------------------------------------------------------------------------- /1.4/user_liveview/priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.4/user_liveview/priv/repo/seeds.exs -------------------------------------------------------------------------------- /1.4/user_liveview/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | Ecto.Adapters.SQL.Sandbox.mode(UserLiveview.Repo, :manual) 3 | -------------------------------------------------------------------------------- /1.5/plate-slate-apollo-ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plate-slate-apollo-ui/.gitignore -------------------------------------------------------------------------------- /1.5/plate-slate-apollo-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plate-slate-apollo-ui/README.md -------------------------------------------------------------------------------- /1.5/plate-slate-apollo-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plate-slate-apollo-ui/package.json -------------------------------------------------------------------------------- /1.5/plate-slate-apollo-ui/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plate-slate-apollo-ui/src/App.css -------------------------------------------------------------------------------- /1.5/plate-slate-apollo-ui/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plate-slate-apollo-ui/src/App.js -------------------------------------------------------------------------------- /1.5/plate-slate-apollo-ui/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plate-slate-apollo-ui/src/index.js -------------------------------------------------------------------------------- /1.5/plate-slate-apollo-ui/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plate-slate-apollo-ui/src/logo.svg -------------------------------------------------------------------------------- /1.5/plate-slate-apollo-ui/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plate-slate-apollo-ui/yarn.lock -------------------------------------------------------------------------------- /1.5/plate-slate-basic-ui/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /1.5/plate-slate-basic-ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plate-slate-basic-ui/index.js -------------------------------------------------------------------------------- /1.5/plate-slate-basic-ui/node_modules/.bin/mime: -------------------------------------------------------------------------------- 1 | ../mime/cli.js -------------------------------------------------------------------------------- /1.5/plate-slate-basic-ui/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /1.5/plate-slate-basic-ui/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /1.5/plate-slate-basic-ui/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /1.5/plate-slate-basic-ui/node_modules/mime/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.5/plate-slate-basic-ui/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /1.5/plate-slate-basic-ui/node_modules/send/node_modules/.bin/mime: -------------------------------------------------------------------------------- 1 | ../../../mime/cli.js -------------------------------------------------------------------------------- /1.5/plate-slate-basic-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plate-slate-basic-ui/package.json -------------------------------------------------------------------------------- /1.5/plate-slate-basic-ui/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plate-slate-basic-ui/yarn.lock -------------------------------------------------------------------------------- /1.5/plate-slate-relay-ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plate-slate-relay-ui/.gitignore -------------------------------------------------------------------------------- /1.5/plate-slate-relay-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plate-slate-relay-ui/README.md -------------------------------------------------------------------------------- /1.5/plate-slate-relay-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plate-slate-relay-ui/package.json -------------------------------------------------------------------------------- /1.5/plate-slate-relay-ui/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plate-slate-relay-ui/src/App.css -------------------------------------------------------------------------------- /1.5/plate-slate-relay-ui/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plate-slate-relay-ui/src/App.js -------------------------------------------------------------------------------- /1.5/plate-slate-relay-ui/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plate-slate-relay-ui/src/index.css -------------------------------------------------------------------------------- /1.5/plate-slate-relay-ui/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plate-slate-relay-ui/src/index.js -------------------------------------------------------------------------------- /1.5/plate-slate-relay-ui/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plate-slate-relay-ui/src/logo.svg -------------------------------------------------------------------------------- /1.5/plate-slate-relay-ui/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plate-slate-relay-ui/yarn.lock -------------------------------------------------------------------------------- /1.5/plateslate/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/.formatter.exs -------------------------------------------------------------------------------- /1.5/plateslate/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/.gitignore -------------------------------------------------------------------------------- /1.5/plateslate/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /1.5/plateslate/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/.idea/misc.xml -------------------------------------------------------------------------------- /1.5/plateslate/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/.idea/modules.xml -------------------------------------------------------------------------------- /1.5/plateslate/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/.idea/vcs.xml -------------------------------------------------------------------------------- /1.5/plateslate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/README.md -------------------------------------------------------------------------------- /1.5/plateslate/assets/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/assets/.babelrc -------------------------------------------------------------------------------- /1.5/plateslate/assets/css/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/assets/css/app.scss -------------------------------------------------------------------------------- /1.5/plateslate/assets/css/phoenix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/assets/css/phoenix.css -------------------------------------------------------------------------------- /1.5/plateslate/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/assets/js/app.js -------------------------------------------------------------------------------- /1.5/plateslate/assets/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/assets/js/socket.js -------------------------------------------------------------------------------- /1.5/plateslate/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/assets/package.json -------------------------------------------------------------------------------- /1.5/plateslate/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/config/config.exs -------------------------------------------------------------------------------- /1.5/plateslate/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/config/dev.exs -------------------------------------------------------------------------------- /1.5/plateslate/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/config/prod.exs -------------------------------------------------------------------------------- /1.5/plateslate/config/prod.secret.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/config/prod.secret.exs -------------------------------------------------------------------------------- /1.5/plateslate/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/config/test.exs -------------------------------------------------------------------------------- /1.5/plateslate/lib/plateslate.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/lib/plateslate.ex -------------------------------------------------------------------------------- /1.5/plateslate/lib/plateslate/menu.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/lib/plateslate/menu.ex -------------------------------------------------------------------------------- /1.5/plateslate/lib/plateslate/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/lib/plateslate/repo.ex -------------------------------------------------------------------------------- /1.5/plateslate/lib/plateslate_web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/lib/plateslate_web.ex -------------------------------------------------------------------------------- /1.5/plateslate/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/mix.exs -------------------------------------------------------------------------------- /1.5/plateslate/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/mix.lock -------------------------------------------------------------------------------- /1.5/plateslate/plateslate.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/plateslate.iml -------------------------------------------------------------------------------- /1.5/plateslate/priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/priv/gettext/errors.pot -------------------------------------------------------------------------------- /1.5/plateslate/priv/repo/seed.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/priv/repo/seed.ex -------------------------------------------------------------------------------- /1.5/plateslate/priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/priv/repo/seeds.exs -------------------------------------------------------------------------------- /1.5/plateslate/test/support/factory.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/test/support/factory.ex -------------------------------------------------------------------------------- /1.5/plateslate/test/test_helper.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.5/plateslate/test/test_helper.exs -------------------------------------------------------------------------------- /1.6.15/pento/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/.formatter.exs -------------------------------------------------------------------------------- /1.6.15/pento/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/.gitignore -------------------------------------------------------------------------------- /1.6.15/pento/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/README.md -------------------------------------------------------------------------------- /1.6.15/pento/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/assets/css/app.css -------------------------------------------------------------------------------- /1.6.15/pento/assets/css/phoenix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/assets/css/phoenix.css -------------------------------------------------------------------------------- /1.6.15/pento/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/assets/js/app.js -------------------------------------------------------------------------------- /1.6.15/pento/assets/vendor/topbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/assets/vendor/topbar.js -------------------------------------------------------------------------------- /1.6.15/pento/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/config/config.exs -------------------------------------------------------------------------------- /1.6.15/pento/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/config/dev.exs -------------------------------------------------------------------------------- /1.6.15/pento/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/config/prod.exs -------------------------------------------------------------------------------- /1.6.15/pento/config/runtime.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/config/runtime.exs -------------------------------------------------------------------------------- /1.6.15/pento/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/config/test.exs -------------------------------------------------------------------------------- /1.6.15/pento/lib/pento.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/lib/pento.ex -------------------------------------------------------------------------------- /1.6.15/pento/lib/pento/accounts.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/lib/pento/accounts.ex -------------------------------------------------------------------------------- /1.6.15/pento/lib/pento/application.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/lib/pento/application.ex -------------------------------------------------------------------------------- /1.6.15/pento/lib/pento/catalog.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/lib/pento/catalog.ex -------------------------------------------------------------------------------- /1.6.15/pento/lib/pento/mailer.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/lib/pento/mailer.ex -------------------------------------------------------------------------------- /1.6.15/pento/lib/pento/promo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/lib/pento/promo.ex -------------------------------------------------------------------------------- /1.6.15/pento/lib/pento/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/lib/pento/repo.ex -------------------------------------------------------------------------------- /1.6.15/pento/lib/pento_web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/lib/pento_web.ex -------------------------------------------------------------------------------- /1.6.15/pento/lib/pento_web/endpoint.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/lib/pento_web/endpoint.ex -------------------------------------------------------------------------------- /1.6.15/pento/lib/pento_web/gettext.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/lib/pento_web/gettext.ex -------------------------------------------------------------------------------- /1.6.15/pento/lib/pento_web/router.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/lib/pento_web/router.ex -------------------------------------------------------------------------------- /1.6.15/pento/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/mix.exs -------------------------------------------------------------------------------- /1.6.15/pento/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/mix.lock -------------------------------------------------------------------------------- /1.6.15/pento/priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/priv/gettext/errors.pot -------------------------------------------------------------------------------- /1.6.15/pento/priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/priv/repo/seeds.exs -------------------------------------------------------------------------------- /1.6.15/pento/priv/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/priv/static/favicon.ico -------------------------------------------------------------------------------- /1.6.15/pento/priv/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/priv/static/robots.txt -------------------------------------------------------------------------------- /1.6.15/pento/test/support/conn_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/test/support/conn_case.ex -------------------------------------------------------------------------------- /1.6.15/pento/test/support/data_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.15/pento/test/support/data_case.ex -------------------------------------------------------------------------------- /1.6.15/pento/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | Ecto.Adapters.SQL.Sandbox.mode(Pento.Repo, :manual) 3 | -------------------------------------------------------------------------------- /1.6.2/hello/.buildpacks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/.buildpacks -------------------------------------------------------------------------------- /1.6.2/hello/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/.formatter.exs -------------------------------------------------------------------------------- /1.6.2/hello/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/.gitignore -------------------------------------------------------------------------------- /1.6.2/hello/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/.idea/.gitignore -------------------------------------------------------------------------------- /1.6.2/hello/.idea/.name: -------------------------------------------------------------------------------- 1 | mix.exs -------------------------------------------------------------------------------- /1.6.2/hello/.idea/hello.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/.idea/hello.iml -------------------------------------------------------------------------------- /1.6.2/hello/.idea/libraries/cowboy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/.idea/libraries/cowboy.xml -------------------------------------------------------------------------------- /1.6.2/hello/.idea/libraries/cowlib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/.idea/libraries/cowlib.xml -------------------------------------------------------------------------------- /1.6.2/hello/.idea/libraries/ecto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/.idea/libraries/ecto.xml -------------------------------------------------------------------------------- /1.6.2/hello/.idea/libraries/floki.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/.idea/libraries/floki.xml -------------------------------------------------------------------------------- /1.6.2/hello/.idea/libraries/jason.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/.idea/libraries/jason.xml -------------------------------------------------------------------------------- /1.6.2/hello/.idea/libraries/mime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/.idea/libraries/mime.xml -------------------------------------------------------------------------------- /1.6.2/hello/.idea/libraries/plug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/.idea/libraries/plug.xml -------------------------------------------------------------------------------- /1.6.2/hello/.idea/libraries/ranch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/.idea/libraries/ranch.xml -------------------------------------------------------------------------------- /1.6.2/hello/.idea/libraries/swoosh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/.idea/libraries/swoosh.xml -------------------------------------------------------------------------------- /1.6.2/hello/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/.idea/misc.xml -------------------------------------------------------------------------------- /1.6.2/hello/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/.idea/modules.xml -------------------------------------------------------------------------------- /1.6.2/hello/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/.idea/vcs.xml -------------------------------------------------------------------------------- /1.6.2/hello/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/Dockerfile -------------------------------------------------------------------------------- /1.6.2/hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/README.md -------------------------------------------------------------------------------- /1.6.2/hello/assets/.buildpacks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/assets/.buildpacks -------------------------------------------------------------------------------- /1.6.2/hello/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/assets/css/app.css -------------------------------------------------------------------------------- /1.6.2/hello/assets/css/phoenix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/assets/css/phoenix.css -------------------------------------------------------------------------------- /1.6.2/hello/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/assets/js/app.js -------------------------------------------------------------------------------- /1.6.2/hello/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/assets/package.json -------------------------------------------------------------------------------- /1.6.2/hello/assets/vendor/topbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/assets/vendor/topbar.js -------------------------------------------------------------------------------- /1.6.2/hello/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/config/config.exs -------------------------------------------------------------------------------- /1.6.2/hello/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/config/dev.exs -------------------------------------------------------------------------------- /1.6.2/hello/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/config/prod.exs -------------------------------------------------------------------------------- /1.6.2/hello/config/runtime.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/config/runtime.exs -------------------------------------------------------------------------------- /1.6.2/hello/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/config/test.exs -------------------------------------------------------------------------------- /1.6.2/hello/elixir_buildpack.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/elixir_buildpack.config -------------------------------------------------------------------------------- /1.6.2/hello/lib/hello.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/lib/hello.ex -------------------------------------------------------------------------------- /1.6.2/hello/lib/hello/application.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/lib/hello/application.ex -------------------------------------------------------------------------------- /1.6.2/hello/lib/hello/mailer.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/lib/hello/mailer.ex -------------------------------------------------------------------------------- /1.6.2/hello/lib/hello/release.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/lib/hello/release.ex -------------------------------------------------------------------------------- /1.6.2/hello/lib/hello/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/lib/hello/repo.ex -------------------------------------------------------------------------------- /1.6.2/hello/lib/hello_web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/lib/hello_web.ex -------------------------------------------------------------------------------- /1.6.2/hello/lib/hello_web/endpoint.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/lib/hello_web/endpoint.ex -------------------------------------------------------------------------------- /1.6.2/hello/lib/hello_web/gettext.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/lib/hello_web/gettext.ex -------------------------------------------------------------------------------- /1.6.2/hello/lib/hello_web/router.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/lib/hello_web/router.ex -------------------------------------------------------------------------------- /1.6.2/hello/lib/hello_web/telemetry.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/lib/hello_web/telemetry.ex -------------------------------------------------------------------------------- /1.6.2/hello/lib/hello_web/templates/hello/index.html.heex: -------------------------------------------------------------------------------- 1 |
2 |

Hello World, from Phoenix!

3 |
-------------------------------------------------------------------------------- /1.6.2/hello/lib/hello_web/templates/page/index.text.eex: -------------------------------------------------------------------------------- 1 | OMG, this is actually some text. -------------------------------------------------------------------------------- /1.6.2/hello/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/mix.exs -------------------------------------------------------------------------------- /1.6.2/hello/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/mix.lock -------------------------------------------------------------------------------- /1.6.2/hello/phoenix_static_buildpack.config: -------------------------------------------------------------------------------- 1 | node_version=14.15.4 -------------------------------------------------------------------------------- /1.6.2/hello/priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/priv/gettext/errors.pot -------------------------------------------------------------------------------- /1.6.2/hello/priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/priv/repo/seeds.exs -------------------------------------------------------------------------------- /1.6.2/hello/priv/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/priv/static/favicon.ico -------------------------------------------------------------------------------- /1.6.2/hello/priv/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/priv/static/robots.txt -------------------------------------------------------------------------------- /1.6.2/hello/priv/static/robots.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/priv/static/robots.txt.gz -------------------------------------------------------------------------------- /1.6.2/hello/test/support/conn_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/test/support/conn_case.ex -------------------------------------------------------------------------------- /1.6.2/hello/test/support/data_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/hello/test/support/data_case.ex -------------------------------------------------------------------------------- /1.6.2/hello/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | Ecto.Adapters.SQL.Sandbox.mode(Hello.Repo, :manual) 3 | -------------------------------------------------------------------------------- /1.6.2/liveview/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/liveview/.idea/.gitignore -------------------------------------------------------------------------------- /1.6.2/liveview/.idea/liveview.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/liveview/.idea/liveview.iml -------------------------------------------------------------------------------- /1.6.2/liveview/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/liveview/.idea/misc.xml -------------------------------------------------------------------------------- /1.6.2/liveview/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/liveview/.idea/modules.xml -------------------------------------------------------------------------------- /1.6.2/liveview/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/liveview/.idea/vcs.xml -------------------------------------------------------------------------------- /1.6.2/liveview/pento/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/liveview/pento/.formatter.exs -------------------------------------------------------------------------------- /1.6.2/liveview/pento/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/liveview/pento/.gitignore -------------------------------------------------------------------------------- /1.6.2/liveview/pento/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/liveview/pento/README.md -------------------------------------------------------------------------------- /1.6.2/liveview/pento/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/liveview/pento/assets/js/app.js -------------------------------------------------------------------------------- /1.6.2/liveview/pento/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/liveview/pento/config/config.exs -------------------------------------------------------------------------------- /1.6.2/liveview/pento/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/liveview/pento/config/dev.exs -------------------------------------------------------------------------------- /1.6.2/liveview/pento/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/liveview/pento/config/prod.exs -------------------------------------------------------------------------------- /1.6.2/liveview/pento/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/liveview/pento/config/test.exs -------------------------------------------------------------------------------- /1.6.2/liveview/pento/lib/pento.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/liveview/pento/lib/pento.ex -------------------------------------------------------------------------------- /1.6.2/liveview/pento/lib/pento/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/liveview/pento/lib/pento/repo.ex -------------------------------------------------------------------------------- /1.6.2/liveview/pento/lib/pento_web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/liveview/pento/lib/pento_web.ex -------------------------------------------------------------------------------- /1.6.2/liveview/pento/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/liveview/pento/mix.exs -------------------------------------------------------------------------------- /1.6.2/liveview/pento/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.6.2/liveview/pento/mix.lock -------------------------------------------------------------------------------- /1.6.2/liveview/pento/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | Ecto.Adapters.SQL.Sandbox.mode(Pento.Repo, :manual) 3 | -------------------------------------------------------------------------------- /1.7.7/fan/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/.formatter.exs -------------------------------------------------------------------------------- /1.7.7/fan/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/.gitignore -------------------------------------------------------------------------------- /1.7.7/fan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/README.md -------------------------------------------------------------------------------- /1.7.7/fan/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/assets/css/app.css -------------------------------------------------------------------------------- /1.7.7/fan/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/assets/js/app.js -------------------------------------------------------------------------------- /1.7.7/fan/assets/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/assets/tailwind.config.js -------------------------------------------------------------------------------- /1.7.7/fan/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/config/config.exs -------------------------------------------------------------------------------- /1.7.7/fan/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/config/dev.exs -------------------------------------------------------------------------------- /1.7.7/fan/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/config/prod.exs -------------------------------------------------------------------------------- /1.7.7/fan/config/runtime.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/config/runtime.exs -------------------------------------------------------------------------------- /1.7.7/fan/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/config/test.exs -------------------------------------------------------------------------------- /1.7.7/fan/lib/fan.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/lib/fan.ex -------------------------------------------------------------------------------- /1.7.7/fan/lib/fan/accounts.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/lib/fan/accounts.ex -------------------------------------------------------------------------------- /1.7.7/fan/lib/fan/accounts/user.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/lib/fan/accounts/user.ex -------------------------------------------------------------------------------- /1.7.7/fan/lib/fan/application.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/lib/fan/application.ex -------------------------------------------------------------------------------- /1.7.7/fan/lib/fan/mailer.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/lib/fan/mailer.ex -------------------------------------------------------------------------------- /1.7.7/fan/lib/fan/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/lib/fan/repo.ex -------------------------------------------------------------------------------- /1.7.7/fan/lib/fan_web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/lib/fan_web.ex -------------------------------------------------------------------------------- /1.7.7/fan/lib/fan_web/endpoint.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/lib/fan_web/endpoint.ex -------------------------------------------------------------------------------- /1.7.7/fan/lib/fan_web/gettext.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/lib/fan_web/gettext.ex -------------------------------------------------------------------------------- /1.7.7/fan/lib/fan_web/router.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/lib/fan_web/router.ex -------------------------------------------------------------------------------- /1.7.7/fan/lib/fan_web/telemetry.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/lib/fan_web/telemetry.ex -------------------------------------------------------------------------------- /1.7.7/fan/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/mix.exs -------------------------------------------------------------------------------- /1.7.7/fan/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/mix.lock -------------------------------------------------------------------------------- /1.7.7/fan/priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/priv/gettext/errors.pot -------------------------------------------------------------------------------- /1.7.7/fan/priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/priv/repo/seeds.exs -------------------------------------------------------------------------------- /1.7.7/fan/priv/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/priv/static/favicon.ico -------------------------------------------------------------------------------- /1.7.7/fan/priv/static/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/priv/static/images/logo.svg -------------------------------------------------------------------------------- /1.7.7/fan/priv/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/priv/static/robots.txt -------------------------------------------------------------------------------- /1.7.7/fan/test/support/conn_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/test/support/conn_case.ex -------------------------------------------------------------------------------- /1.7.7/fan/test/support/data_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/1.7.7/fan/test/support/data_case.ex -------------------------------------------------------------------------------- /1.7.7/fan/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | Ecto.Adapters.SQL.Sandbox.mode(Fan.Repo, :manual) 3 | -------------------------------------------------------------------------------- /multitenacy/fresco/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/multitenacy/fresco/.formatter.exs -------------------------------------------------------------------------------- /multitenacy/fresco/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/multitenacy/fresco/.gitignore -------------------------------------------------------------------------------- /multitenacy/fresco/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/multitenacy/fresco/.idea/.gitignore -------------------------------------------------------------------------------- /multitenacy/fresco/.idea/fresco.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/multitenacy/fresco/.idea/fresco.iml -------------------------------------------------------------------------------- /multitenacy/fresco/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/multitenacy/fresco/.idea/misc.xml -------------------------------------------------------------------------------- /multitenacy/fresco/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/multitenacy/fresco/.idea/modules.xml -------------------------------------------------------------------------------- /multitenacy/fresco/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/multitenacy/fresco/.idea/vcs.xml -------------------------------------------------------------------------------- /multitenacy/fresco/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/multitenacy/fresco/README.md -------------------------------------------------------------------------------- /multitenacy/fresco/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/multitenacy/fresco/assets/css/app.css -------------------------------------------------------------------------------- /multitenacy/fresco/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/multitenacy/fresco/assets/js/app.js -------------------------------------------------------------------------------- /multitenacy/fresco/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/multitenacy/fresco/config/config.exs -------------------------------------------------------------------------------- /multitenacy/fresco/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/multitenacy/fresco/config/dev.exs -------------------------------------------------------------------------------- /multitenacy/fresco/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/multitenacy/fresco/config/prod.exs -------------------------------------------------------------------------------- /multitenacy/fresco/config/runtime.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/multitenacy/fresco/config/runtime.exs -------------------------------------------------------------------------------- /multitenacy/fresco/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/multitenacy/fresco/config/test.exs -------------------------------------------------------------------------------- /multitenacy/fresco/lib/fresco.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/multitenacy/fresco/lib/fresco.ex -------------------------------------------------------------------------------- /multitenacy/fresco/lib/fresco/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/multitenacy/fresco/lib/fresco/repo.ex -------------------------------------------------------------------------------- /multitenacy/fresco/lib/fresco_web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/multitenacy/fresco/lib/fresco_web.ex -------------------------------------------------------------------------------- /multitenacy/fresco/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/multitenacy/fresco/mix.exs -------------------------------------------------------------------------------- /multitenacy/fresco/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/multitenacy/fresco/mix.lock -------------------------------------------------------------------------------- /multitenacy/fresco/priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imeraj/phoenix_playground/HEAD/multitenacy/fresco/priv/repo/seeds.exs -------------------------------------------------------------------------------- /multitenacy/fresco/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | Ecto.Adapters.SQL.Sandbox.mode(Fresco.Repo, :manual) 3 | --------------------------------------------------------------------------------