Update READme and include gitignore.

This commit is contained in:
James Harton 2018-04-08 16:28:29 +12:00
parent 13621e67df
commit 524e0fc663
2 changed files with 28 additions and 1 deletions

27
.gitignore vendored Normal file
View file

@ -0,0 +1,27 @@
# App artifacts
/_build
/db
/deps
/*.ez
# Generated on crash by the VM
erl_crash.dump
# Generated on crash by NPM
npm-debug.log
# Static artifacts
/assets/node_modules
# Since we are building assets from assets/,
# we ignore priv/static. You may want to comment
# this depending on your deployment strategy.
/priv/static/
# Files matching config/*.secret.exs pattern contain sensitive
# data and you should not commit them into version control.
#
# Alternatively, you may comment the line below and commit the
# secrets files as long as you replace their contents by environment
# variables.
/config/*.secret.exs

View file

@ -1,5 +1,5 @@
# Wellington Elixir Meetup GraphQL Lightning Talk
## Because I counldn't think of a snappier title
## Because I couldn't think of a snappier title
This is a very quick overview of what GraphQL is and what it's useful for. A lot of this info can be gleaned directly from the [Absinthe](https://absinthe-graphql.org/) documentation.