-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from dwyl/DWYL_API_KEY-issue#42
PR: AUTH_API_KEY issue #42
- Loading branch information
Showing
101 changed files
with
3,394 additions
and
1,042 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
export ADMIN_EMAIL=youremail@gmail.com | ||
export AUTH_API_KEY=2PzB7PPnpuLsbWmWtXpGyI+kfSQSQ1zUW2Atz/+8PdZuSEJzHgzGnJWV35nTKRwx | ||
export EMAIL_APP_URL=https://dwylmail.herokuapp.com | ||
export GITHUB_CLIENT_ID=CreateGitHubApp | ||
export GITHUB_CLIENT_SECRET=SuperSecret | ||
export GOOGLE_CLIENT_ID=YourAppsClientId.apps.googleusercontent.com | ||
export GOOGLE_CLIENT_SECRET=SuperSecret | ||
export SECRET_KEY_BASE=2PzB7PPnpuLsbWmWtXpGyI+kfSQSQ1zUW2Atz/+8PdZuSEJzHgzGnJWV35nTKRwx | ||
export ENCRYPTION_KEYS='nMdayQpR0aoasLaq1g94FLba+A+wB44JLko47sVQXMg=,L+ZVX8iheoqgqb22mUpATmMDsvVGtafoAeb0KN5uWf0=' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
import_deps: [:ecto, :phoenix], | ||
inputs: ["*.{ex,exs}", "priv/*/seeds.exs", "{config,lib,test}/**/*.{ex,exs}"], | ||
subdirectories: ["priv/*/migrations"] | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,23 @@ | ||
language: elixir | ||
elixir: | ||
- 1.7 | ||
addons: | ||
postgresql: '9.4' | ||
- 1.10.2 | ||
otp_release: | ||
- 22.1.8 | ||
services: | ||
- postgresql | ||
env: | ||
- MIX_ENV=test | ||
before_script: | ||
- mix do ecto.create, ecto.migrate | ||
- mix ecto.setup | ||
script: | ||
- mix do deps.get, compile --warnings-as-errors, coveralls.json | ||
# after_success: | ||
# - bash <(curl -s https://codecov.io/bash) | ||
- mix do deps.get, coveralls.json | ||
# See: github.com/dwyl/repo-badges#documentation | ||
after_script: | ||
- MIX_ENV=docs mix deps.get | ||
- MIX_ENV=docs mix inch.report | ||
after_success: | ||
- bash <(curl -s https://codecov.io/bash) | ||
cache: | ||
directories: | ||
- _build | ||
- deps |
Oops, something went wrong.