├── .formatter.exs ├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── LICENSE ├── 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 ├── threehundred60.ex ├── threehundred60 │ ├── application.ex │ ├── categories.ex │ ├── categories │ │ └── category.ex │ ├── locations.ex │ ├── locations │ │ └── location.ex │ └── repo.ex ├── threehundred60_web.ex └── threehundred60_web │ ├── channels │ └── user_socket.ex │ ├── controllers │ ├── category_controller.ex │ ├── location_controller.ex │ └── page_controller.ex │ ├── endpoint.ex │ ├── gettext.ex │ ├── router.ex │ ├── telemetry.ex │ ├── templates │ ├── category │ │ ├── edit.html.eex │ │ ├── form.html.eex │ │ ├── index.html.eex │ │ ├── new.html.eex │ │ └── show.html.eex │ ├── layout │ │ └── app.html.eex │ ├── location │ │ ├── edit.html.eex │ │ ├── form.html.eex │ │ ├── index.html.eex │ │ ├── new.html.eex │ │ └── show.html.eex │ └── page │ │ └── index.html.eex │ └── views │ ├── category_view.ex │ ├── error_helpers.ex │ ├── error_view.ex │ ├── layout_view.ex │ ├── location_view.ex │ └── page_view.ex ├── mix.exs ├── mix.lock ├── priv ├── gettext │ ├── en │ │ └── LC_MESSAGES │ │ │ └── errors.po │ └── errors.pot └── repo │ ├── migrations │ ├── .formatter.exs │ ├── 20200603013828_create_categories.exs │ ├── 20200603014456_create_locations.exs │ └── 20200603034912_rename_langtitude_to_latitude.exs │ └── seeds.exs └── test ├── support ├── channel_case.ex ├── conn_case.ex └── data_case.ex ├── test_helper.exs ├── threehundred60 ├── categories_test.exs └── locations_test.exs └── threehundred60_web ├── controllers ├── category_controller_test.exs ├── location_controller_test.exs └── page_controller_test.exs └── views ├── error_view_test.exs ├── layout_view_test.exs └── page_view_test.exs /.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/.formatter.exs -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/README.md -------------------------------------------------------------------------------- /assets/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/assets/.babelrc -------------------------------------------------------------------------------- /assets/css/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/assets/css/app.scss -------------------------------------------------------------------------------- /assets/css/phoenix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/assets/css/phoenix.css -------------------------------------------------------------------------------- /assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/assets/js/app.js -------------------------------------------------------------------------------- /assets/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/assets/js/socket.js -------------------------------------------------------------------------------- /assets/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/assets/package-lock.json -------------------------------------------------------------------------------- /assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/assets/package.json -------------------------------------------------------------------------------- /assets/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/assets/static/favicon.ico -------------------------------------------------------------------------------- /assets/static/images/phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/assets/static/images/phoenix.png -------------------------------------------------------------------------------- /assets/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/assets/static/robots.txt -------------------------------------------------------------------------------- /assets/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/assets/webpack.config.js -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/config/config.exs -------------------------------------------------------------------------------- /config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/config/dev.exs -------------------------------------------------------------------------------- /config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/config/prod.exs -------------------------------------------------------------------------------- /config/prod.secret.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/config/prod.secret.exs -------------------------------------------------------------------------------- /config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/config/test.exs -------------------------------------------------------------------------------- /lib/threehundred60.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60.ex -------------------------------------------------------------------------------- /lib/threehundred60/application.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60/application.ex -------------------------------------------------------------------------------- /lib/threehundred60/categories.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60/categories.ex -------------------------------------------------------------------------------- /lib/threehundred60/categories/category.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60/categories/category.ex -------------------------------------------------------------------------------- /lib/threehundred60/locations.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60/locations.ex -------------------------------------------------------------------------------- /lib/threehundred60/locations/location.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60/locations/location.ex -------------------------------------------------------------------------------- /lib/threehundred60/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60/repo.ex -------------------------------------------------------------------------------- /lib/threehundred60_web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web.ex -------------------------------------------------------------------------------- /lib/threehundred60_web/channels/user_socket.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/channels/user_socket.ex -------------------------------------------------------------------------------- /lib/threehundred60_web/controllers/category_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/controllers/category_controller.ex -------------------------------------------------------------------------------- /lib/threehundred60_web/controllers/location_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/controllers/location_controller.ex -------------------------------------------------------------------------------- /lib/threehundred60_web/controllers/page_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/controllers/page_controller.ex -------------------------------------------------------------------------------- /lib/threehundred60_web/endpoint.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/endpoint.ex -------------------------------------------------------------------------------- /lib/threehundred60_web/gettext.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/gettext.ex -------------------------------------------------------------------------------- /lib/threehundred60_web/router.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/router.ex -------------------------------------------------------------------------------- /lib/threehundred60_web/telemetry.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/telemetry.ex -------------------------------------------------------------------------------- /lib/threehundred60_web/templates/category/edit.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/templates/category/edit.html.eex -------------------------------------------------------------------------------- /lib/threehundred60_web/templates/category/form.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/templates/category/form.html.eex -------------------------------------------------------------------------------- /lib/threehundred60_web/templates/category/index.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/templates/category/index.html.eex -------------------------------------------------------------------------------- /lib/threehundred60_web/templates/category/new.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/templates/category/new.html.eex -------------------------------------------------------------------------------- /lib/threehundred60_web/templates/category/show.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/templates/category/show.html.eex -------------------------------------------------------------------------------- /lib/threehundred60_web/templates/layout/app.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/templates/layout/app.html.eex -------------------------------------------------------------------------------- /lib/threehundred60_web/templates/location/edit.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/templates/location/edit.html.eex -------------------------------------------------------------------------------- /lib/threehundred60_web/templates/location/form.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/templates/location/form.html.eex -------------------------------------------------------------------------------- /lib/threehundred60_web/templates/location/index.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/templates/location/index.html.eex -------------------------------------------------------------------------------- /lib/threehundred60_web/templates/location/new.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/templates/location/new.html.eex -------------------------------------------------------------------------------- /lib/threehundred60_web/templates/location/show.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/templates/location/show.html.eex -------------------------------------------------------------------------------- /lib/threehundred60_web/templates/page/index.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/templates/page/index.html.eex -------------------------------------------------------------------------------- /lib/threehundred60_web/views/category_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/views/category_view.ex -------------------------------------------------------------------------------- /lib/threehundred60_web/views/error_helpers.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/views/error_helpers.ex -------------------------------------------------------------------------------- /lib/threehundred60_web/views/error_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/views/error_view.ex -------------------------------------------------------------------------------- /lib/threehundred60_web/views/layout_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/views/layout_view.ex -------------------------------------------------------------------------------- /lib/threehundred60_web/views/location_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/views/location_view.ex -------------------------------------------------------------------------------- /lib/threehundred60_web/views/page_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/lib/threehundred60_web/views/page_view.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/mix.lock -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/errors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/priv/gettext/en/LC_MESSAGES/errors.po -------------------------------------------------------------------------------- /priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/priv/gettext/errors.pot -------------------------------------------------------------------------------- /priv/repo/migrations/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/priv/repo/migrations/.formatter.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20200603013828_create_categories.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/priv/repo/migrations/20200603013828_create_categories.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20200603014456_create_locations.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/priv/repo/migrations/20200603014456_create_locations.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20200603034912_rename_langtitude_to_latitude.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/priv/repo/migrations/20200603034912_rename_langtitude_to_latitude.exs -------------------------------------------------------------------------------- /priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/priv/repo/seeds.exs -------------------------------------------------------------------------------- /test/support/channel_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/test/support/channel_case.ex -------------------------------------------------------------------------------- /test/support/conn_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/test/support/conn_case.ex -------------------------------------------------------------------------------- /test/support/data_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/test/support/data_case.ex -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | Ecto.Adapters.SQL.Sandbox.mode(Threehundred60.Repo, :manual) 3 | -------------------------------------------------------------------------------- /test/threehundred60/categories_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/test/threehundred60/categories_test.exs -------------------------------------------------------------------------------- /test/threehundred60/locations_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/test/threehundred60/locations_test.exs -------------------------------------------------------------------------------- /test/threehundred60_web/controllers/category_controller_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/test/threehundred60_web/controllers/category_controller_test.exs -------------------------------------------------------------------------------- /test/threehundred60_web/controllers/location_controller_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/test/threehundred60_web/controllers/location_controller_test.exs -------------------------------------------------------------------------------- /test/threehundred60_web/controllers/page_controller_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/test/threehundred60_web/controllers/page_controller_test.exs -------------------------------------------------------------------------------- /test/threehundred60_web/views/error_view_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/test/threehundred60_web/views/error_view_test.exs -------------------------------------------------------------------------------- /test/threehundred60_web/views/layout_view_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/test/threehundred60_web/views/layout_view_test.exs -------------------------------------------------------------------------------- /test/threehundred60_web/views/page_view_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesimtunc/ThreeHundred60/HEAD/test/threehundred60_web/views/page_view_test.exs --------------------------------------------------------------------------------