├── README.md ├── zero-django ├── .gitignore ├── .python-version ├── README.md ├── db.sqlite3 ├── manage.py ├── people │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_person_friends.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── requirements.txt └── zero_django │ ├── __init__.py │ ├── models.py │ ├── schema.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── zero-node ├── .gitignore ├── README.md ├── index.js ├── package.json └── schema.js ├── zero-phoenix ├── .gitignore ├── README.md ├── config │ ├── config.exs │ ├── dev.exs │ ├── prod.exs │ └── test.exs ├── lib │ ├── zero_phoenix.ex │ └── zero_phoenix │ │ ├── endpoint.ex │ │ └── repo.ex ├── mix.exs ├── mix.lock ├── priv │ ├── gettext │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── errors.po │ │ └── errors.pot │ ├── repo │ │ ├── migrations │ │ │ ├── 20160730004705_create_person.exs │ │ │ └── 20160730024335_create_friendship.exs │ │ └── seeds.exs │ └── static │ │ ├── css │ │ └── app.css │ │ ├── favicon.ico │ │ ├── images │ │ └── phoenix.png │ │ ├── js │ │ ├── app.js │ │ └── phoenix.js │ │ └── robots.txt ├── test │ ├── controllers │ │ ├── page_controller_test.exs │ │ └── person_controller_test.exs │ ├── models │ │ ├── friendship_test.exs │ │ └── person_test.exs │ ├── support │ │ ├── channel_case.ex │ │ ├── conn_case.ex │ │ └── model_case.ex │ ├── test_helper.exs │ └── views │ │ ├── error_view_test.exs │ │ ├── layout_view_test.exs │ │ └── page_view_test.exs └── web │ ├── channels │ └── user_socket.ex │ ├── controllers │ ├── page_controller.ex │ └── person_controller.ex │ ├── gettext.ex │ ├── graphql │ ├── schema.ex │ └── types │ │ └── person.ex │ ├── models │ ├── friendship.ex │ └── person.ex │ ├── resolvers │ └── person_resolver.ex │ ├── router.ex │ ├── templates │ ├── layout │ │ └── app.html.eex │ └── page │ │ └── index.html.eex │ ├── views │ ├── changeset_view.ex │ ├── error_helpers.ex │ ├── error_view.ex │ ├── layout_view.ex │ ├── page_view.ex │ └── person_view.ex │ └── web.ex ├── zero-rails ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app │ ├── assets │ │ ├── config │ │ │ └── manifest.js │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ ├── application.js │ │ │ ├── cable.coffee │ │ │ └── channels │ │ │ │ └── .keep │ │ └── stylesheets │ │ │ └── application.css │ ├── channels │ │ └── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ ├── controllers │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── graphql_controller.rb │ │ └── people_controller.rb │ ├── helpers │ │ ├── application_helper.rb │ │ └── people_helper.rb │ ├── jobs │ │ └── application_job.rb │ ├── mailers │ │ └── application_mailer.rb │ ├── models │ │ ├── application_record.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── person.rb │ │ └── schema.rb │ ├── serializers │ │ └── person_serializer.rb │ └── views │ │ └── layouts │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ └── mailer.text.erb ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ ├── spring │ └── update ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── active_record_belongs_to_required_by_default.rb │ │ ├── application_controller_renderer.rb │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── callback_terminator.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── per_form_csrf_tokens.rb │ │ ├── request_forgery_protection.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── puma.rb │ ├── routes.rb │ └── secrets.yml ├── db │ ├── migrate │ │ ├── 20160413032518_create_people.rb │ │ └── 20160413033451_create_friendships.rb │ ├── schema.rb │ └── seeds.rb ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ └── .keep ├── log │ └── .keep ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── favicon.ico │ └── robots.txt ├── test │ ├── controllers │ │ └── .keep │ ├── fixtures │ │ ├── .keep │ │ └── files │ │ │ └── .keep │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ └── .keep │ └── test_helper.rb ├── tmp │ └── .keep └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep └── zero-scala ├── .gitignore ├── README.md ├── build.sbt ├── project ├── build.properties └── plugins.sbt └── src ├── main ├── resources │ ├── application.conf │ └── graphiql.html └── scala │ ├── Repository.scala │ ├── SchemaDefinition.scala │ └── Server.scala └── test ├── resources └── application.conf └── scala └── SchemaSpec.scala /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/README.md -------------------------------------------------------------------------------- /zero-django/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /zero-django/.python-version: -------------------------------------------------------------------------------- 1 | 3.5.0 2 | -------------------------------------------------------------------------------- /zero-django/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-django/README.md -------------------------------------------------------------------------------- /zero-django/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-django/db.sqlite3 -------------------------------------------------------------------------------- /zero-django/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-django/manage.py -------------------------------------------------------------------------------- /zero-django/people/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-django/people/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-django/people/admin.py -------------------------------------------------------------------------------- /zero-django/people/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-django/people/apps.py -------------------------------------------------------------------------------- /zero-django/people/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-django/people/migrations/0001_initial.py -------------------------------------------------------------------------------- /zero-django/people/migrations/0002_person_friends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-django/people/migrations/0002_person_friends.py -------------------------------------------------------------------------------- /zero-django/people/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-django/people/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-django/people/models.py -------------------------------------------------------------------------------- /zero-django/people/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-django/people/tests.py -------------------------------------------------------------------------------- /zero-django/people/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-django/people/urls.py -------------------------------------------------------------------------------- /zero-django/people/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-django/people/views.py -------------------------------------------------------------------------------- /zero-django/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-django/requirements.txt -------------------------------------------------------------------------------- /zero-django/zero_django/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-django/zero_django/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-django/zero_django/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-django/zero_django/schema.py -------------------------------------------------------------------------------- /zero-django/zero_django/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-django/zero_django/settings.py -------------------------------------------------------------------------------- /zero-django/zero_django/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-django/zero_django/urls.py -------------------------------------------------------------------------------- /zero-django/zero_django/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-django/zero_django/wsgi.py -------------------------------------------------------------------------------- /zero-node/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /zero-node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-node/README.md -------------------------------------------------------------------------------- /zero-node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-node/index.js -------------------------------------------------------------------------------- /zero-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-node/package.json -------------------------------------------------------------------------------- /zero-node/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-node/schema.js -------------------------------------------------------------------------------- /zero-phoenix/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/.gitignore -------------------------------------------------------------------------------- /zero-phoenix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/README.md -------------------------------------------------------------------------------- /zero-phoenix/config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/config/config.exs -------------------------------------------------------------------------------- /zero-phoenix/config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/config/dev.exs -------------------------------------------------------------------------------- /zero-phoenix/config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/config/prod.exs -------------------------------------------------------------------------------- /zero-phoenix/config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/config/test.exs -------------------------------------------------------------------------------- /zero-phoenix/lib/zero_phoenix.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/lib/zero_phoenix.ex -------------------------------------------------------------------------------- /zero-phoenix/lib/zero_phoenix/endpoint.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/lib/zero_phoenix/endpoint.ex -------------------------------------------------------------------------------- /zero-phoenix/lib/zero_phoenix/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/lib/zero_phoenix/repo.ex -------------------------------------------------------------------------------- /zero-phoenix/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/mix.exs -------------------------------------------------------------------------------- /zero-phoenix/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/mix.lock -------------------------------------------------------------------------------- /zero-phoenix/priv/gettext/en/LC_MESSAGES/errors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/priv/gettext/en/LC_MESSAGES/errors.po -------------------------------------------------------------------------------- /zero-phoenix/priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/priv/gettext/errors.pot -------------------------------------------------------------------------------- /zero-phoenix/priv/repo/migrations/20160730004705_create_person.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/priv/repo/migrations/20160730004705_create_person.exs -------------------------------------------------------------------------------- /zero-phoenix/priv/repo/migrations/20160730024335_create_friendship.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/priv/repo/migrations/20160730024335_create_friendship.exs -------------------------------------------------------------------------------- /zero-phoenix/priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/priv/repo/seeds.exs -------------------------------------------------------------------------------- /zero-phoenix/priv/static/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/priv/static/css/app.css -------------------------------------------------------------------------------- /zero-phoenix/priv/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/priv/static/favicon.ico -------------------------------------------------------------------------------- /zero-phoenix/priv/static/images/phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/priv/static/images/phoenix.png -------------------------------------------------------------------------------- /zero-phoenix/priv/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/priv/static/js/app.js -------------------------------------------------------------------------------- /zero-phoenix/priv/static/js/phoenix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/priv/static/js/phoenix.js -------------------------------------------------------------------------------- /zero-phoenix/priv/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/priv/static/robots.txt -------------------------------------------------------------------------------- /zero-phoenix/test/controllers/page_controller_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/test/controllers/page_controller_test.exs -------------------------------------------------------------------------------- /zero-phoenix/test/controllers/person_controller_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/test/controllers/person_controller_test.exs -------------------------------------------------------------------------------- /zero-phoenix/test/models/friendship_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/test/models/friendship_test.exs -------------------------------------------------------------------------------- /zero-phoenix/test/models/person_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/test/models/person_test.exs -------------------------------------------------------------------------------- /zero-phoenix/test/support/channel_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/test/support/channel_case.ex -------------------------------------------------------------------------------- /zero-phoenix/test/support/conn_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/test/support/conn_case.ex -------------------------------------------------------------------------------- /zero-phoenix/test/support/model_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/test/support/model_case.ex -------------------------------------------------------------------------------- /zero-phoenix/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start 2 | 3 | Ecto.Adapters.SQL.Sandbox.mode(ZeroPhoenix.Repo, :manual) 4 | 5 | -------------------------------------------------------------------------------- /zero-phoenix/test/views/error_view_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/test/views/error_view_test.exs -------------------------------------------------------------------------------- /zero-phoenix/test/views/layout_view_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/test/views/layout_view_test.exs -------------------------------------------------------------------------------- /zero-phoenix/test/views/page_view_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/test/views/page_view_test.exs -------------------------------------------------------------------------------- /zero-phoenix/web/channels/user_socket.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/web/channels/user_socket.ex -------------------------------------------------------------------------------- /zero-phoenix/web/controllers/page_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/web/controllers/page_controller.ex -------------------------------------------------------------------------------- /zero-phoenix/web/controllers/person_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/web/controllers/person_controller.ex -------------------------------------------------------------------------------- /zero-phoenix/web/gettext.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/web/gettext.ex -------------------------------------------------------------------------------- /zero-phoenix/web/graphql/schema.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/web/graphql/schema.ex -------------------------------------------------------------------------------- /zero-phoenix/web/graphql/types/person.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/web/graphql/types/person.ex -------------------------------------------------------------------------------- /zero-phoenix/web/models/friendship.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/web/models/friendship.ex -------------------------------------------------------------------------------- /zero-phoenix/web/models/person.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/web/models/person.ex -------------------------------------------------------------------------------- /zero-phoenix/web/resolvers/person_resolver.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/web/resolvers/person_resolver.ex -------------------------------------------------------------------------------- /zero-phoenix/web/router.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/web/router.ex -------------------------------------------------------------------------------- /zero-phoenix/web/templates/layout/app.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/web/templates/layout/app.html.eex -------------------------------------------------------------------------------- /zero-phoenix/web/templates/page/index.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/web/templates/page/index.html.eex -------------------------------------------------------------------------------- /zero-phoenix/web/views/changeset_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/web/views/changeset_view.ex -------------------------------------------------------------------------------- /zero-phoenix/web/views/error_helpers.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/web/views/error_helpers.ex -------------------------------------------------------------------------------- /zero-phoenix/web/views/error_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/web/views/error_view.ex -------------------------------------------------------------------------------- /zero-phoenix/web/views/layout_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/web/views/layout_view.ex -------------------------------------------------------------------------------- /zero-phoenix/web/views/page_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/web/views/page_view.ex -------------------------------------------------------------------------------- /zero-phoenix/web/views/person_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/web/views/person_view.ex -------------------------------------------------------------------------------- /zero-phoenix/web/web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-phoenix/web/web.ex -------------------------------------------------------------------------------- /zero-rails/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/.gitignore -------------------------------------------------------------------------------- /zero-rails/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/Gemfile -------------------------------------------------------------------------------- /zero-rails/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/Gemfile.lock -------------------------------------------------------------------------------- /zero-rails/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/README.md -------------------------------------------------------------------------------- /zero-rails/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/Rakefile -------------------------------------------------------------------------------- /zero-rails/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/app/assets/config/manifest.js -------------------------------------------------------------------------------- /zero-rails/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-rails/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /zero-rails/app/assets/javascripts/cable.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/app/assets/javascripts/cable.coffee -------------------------------------------------------------------------------- /zero-rails/app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-rails/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /zero-rails/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /zero-rails/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /zero-rails/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /zero-rails/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-rails/app/controllers/graphql_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/app/controllers/graphql_controller.rb -------------------------------------------------------------------------------- /zero-rails/app/controllers/people_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/app/controllers/people_controller.rb -------------------------------------------------------------------------------- /zero-rails/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /zero-rails/app/helpers/people_helper.rb: -------------------------------------------------------------------------------- 1 | module PeopleHelper 2 | end 3 | -------------------------------------------------------------------------------- /zero-rails/app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /zero-rails/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /zero-rails/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/app/models/application_record.rb -------------------------------------------------------------------------------- /zero-rails/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-rails/app/models/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/app/models/person.rb -------------------------------------------------------------------------------- /zero-rails/app/models/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/app/models/schema.rb -------------------------------------------------------------------------------- /zero-rails/app/serializers/person_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/app/serializers/person_serializer.rb -------------------------------------------------------------------------------- /zero-rails/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /zero-rails/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /zero-rails/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /zero-rails/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/bin/bundle -------------------------------------------------------------------------------- /zero-rails/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/bin/rails -------------------------------------------------------------------------------- /zero-rails/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/bin/rake -------------------------------------------------------------------------------- /zero-rails/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/bin/setup -------------------------------------------------------------------------------- /zero-rails/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/bin/spring -------------------------------------------------------------------------------- /zero-rails/bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/bin/update -------------------------------------------------------------------------------- /zero-rails/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config.ru -------------------------------------------------------------------------------- /zero-rails/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/application.rb -------------------------------------------------------------------------------- /zero-rails/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/boot.rb -------------------------------------------------------------------------------- /zero-rails/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/cable.yml -------------------------------------------------------------------------------- /zero-rails/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/database.yml -------------------------------------------------------------------------------- /zero-rails/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/environment.rb -------------------------------------------------------------------------------- /zero-rails/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/environments/development.rb -------------------------------------------------------------------------------- /zero-rails/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/environments/production.rb -------------------------------------------------------------------------------- /zero-rails/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/environments/test.rb -------------------------------------------------------------------------------- /zero-rails/config/initializers/active_record_belongs_to_required_by_default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/initializers/active_record_belongs_to_required_by_default.rb -------------------------------------------------------------------------------- /zero-rails/config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /zero-rails/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/initializers/assets.rb -------------------------------------------------------------------------------- /zero-rails/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /zero-rails/config/initializers/callback_terminator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/initializers/callback_terminator.rb -------------------------------------------------------------------------------- /zero-rails/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /zero-rails/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /zero-rails/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/initializers/inflections.rb -------------------------------------------------------------------------------- /zero-rails/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /zero-rails/config/initializers/per_form_csrf_tokens.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/initializers/per_form_csrf_tokens.rb -------------------------------------------------------------------------------- /zero-rails/config/initializers/request_forgery_protection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/initializers/request_forgery_protection.rb -------------------------------------------------------------------------------- /zero-rails/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/initializers/session_store.rb -------------------------------------------------------------------------------- /zero-rails/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /zero-rails/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/locales/en.yml -------------------------------------------------------------------------------- /zero-rails/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/puma.rb -------------------------------------------------------------------------------- /zero-rails/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/routes.rb -------------------------------------------------------------------------------- /zero-rails/config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/config/secrets.yml -------------------------------------------------------------------------------- /zero-rails/db/migrate/20160413032518_create_people.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/db/migrate/20160413032518_create_people.rb -------------------------------------------------------------------------------- /zero-rails/db/migrate/20160413033451_create_friendships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/db/migrate/20160413033451_create_friendships.rb -------------------------------------------------------------------------------- /zero-rails/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/db/schema.rb -------------------------------------------------------------------------------- /zero-rails/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/db/seeds.rb -------------------------------------------------------------------------------- /zero-rails/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-rails/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-rails/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-rails/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/public/404.html -------------------------------------------------------------------------------- /zero-rails/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/public/422.html -------------------------------------------------------------------------------- /zero-rails/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/public/500.html -------------------------------------------------------------------------------- /zero-rails/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-rails/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-rails/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-rails/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/public/robots.txt -------------------------------------------------------------------------------- /zero-rails/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-rails/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-rails/test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-rails/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-rails/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-rails/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-rails/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-rails/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-rails/test/test_helper.rb -------------------------------------------------------------------------------- /zero-rails/tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-rails/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-rails/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zero-scala/.gitignore: -------------------------------------------------------------------------------- 1 | # folders 2 | .idea 3 | target 4 | lib 5 | classes 6 | 7 | # files 8 | *.iml 9 | -------------------------------------------------------------------------------- /zero-scala/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-scala/README.md -------------------------------------------------------------------------------- /zero-scala/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-scala/build.sbt -------------------------------------------------------------------------------- /zero-scala/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.11 2 | -------------------------------------------------------------------------------- /zero-scala/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-scala/project/plugins.sbt -------------------------------------------------------------------------------- /zero-scala/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-scala/src/main/resources/application.conf -------------------------------------------------------------------------------- /zero-scala/src/main/resources/graphiql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-scala/src/main/resources/graphiql.html -------------------------------------------------------------------------------- /zero-scala/src/main/scala/Repository.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-scala/src/main/scala/Repository.scala -------------------------------------------------------------------------------- /zero-scala/src/main/scala/SchemaDefinition.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-scala/src/main/scala/SchemaDefinition.scala -------------------------------------------------------------------------------- /zero-scala/src/main/scala/Server.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-scala/src/main/scala/Server.scala -------------------------------------------------------------------------------- /zero-scala/src/test/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-scala/src/test/resources/application.conf -------------------------------------------------------------------------------- /zero-scala/src/test/scala/SchemaSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steveluscher/zero-to-graphql/HEAD/zero-scala/src/test/scala/SchemaSpec.scala --------------------------------------------------------------------------------