Skip to content

Commit

Permalink
Merge pull request #2 from dwyl/tutorial
Browse files Browse the repository at this point in the history
Tutorial for Append Only Database/Log
  • Loading branch information
nelsonic authored Sep 27, 2018
2 parents 165818e + 72394c2 commit d37c776
Show file tree
Hide file tree
Showing 50 changed files with 6,052 additions and 3 deletions.
25 changes: 23 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,30 @@
# App artifacts
/_build
/cover
/deps
/doc
/.fetch
erl_crash.dump
*.ez
*.beam
/config/*.secret.exs

# 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
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: elixir
elixir:
- 1.6.1
otp_release:
- 20.2.4
env:
- MIX_ENV=test
before_script:
- psql -c "CREATE USER append_only WITH PASSWORD 'postgres';" -U postgres
- psql -c "ALTER USER append_only CREATEDB;" -U postgres
script:
# - mix do deps.get, compile --warnings-as-errors, coveralls.json, dogma
- mix cover
after_success:
- bash <(curl -s https://codecov.io/bash)
Loading

0 comments on commit d37c776

Please sign in to comment.