Compare commits

...
This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.

4 commits

Author SHA1 Message Date
James Harton
3568c50db5 update gitignore, 2018-04-10 18:19:57 +12:00
James Harton
48d4cb732d Update go.sh 2018-04-10 12:37:40 +12:00
James Harton
6ff0e26b01 Add go.sh 2018-04-10 12:33:42 +12:00
James Harton
524e0fc663 Update READme and include gitignore. 2018-04-08 16:28:29 +12:00
3 changed files with 39 additions and 1 deletions

28
.gitignore vendored Normal file
View file

@ -0,0 +1,28 @@
# App artifacts
/_build
/db
/deps
/*.ez
.envrc
# 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 # 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. 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.

10
go.sh Executable file
View file

@ -0,0 +1,10 @@
#!/bin/sh
set -e
open -a /Applications/Marked\ 2.app README.md
code .
read -p "Press enter to continue to next step"
git checkout step-1
exec ./go.sh