The Wayback Machine - https://web.archive.org/web/20230225200403/https://github.com/dwyl/phoenix-ecto-append-only-log-example/pull/2/files
Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tutorial for Append Only Database/Log #2

Merged
merged 16 commits into from Sep 27, 2018
@@ -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
@@ -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)