Skip to content
This repository has been archived by the owner on Jun 11, 2023. It is now read-only.

Add coverage badge #206

Merged
merged 2 commits into from
May 10, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<p align="center"><img src="help/logo.png" /></p>


# Helix [![Build Status](https://ci.hackerexperience.com/buildStatus/icon?job=HackerExperience/Helix/master)](https://ci.hackerexperience.com/job/HackerExperience/job/Helix/job/master) [![Ebert](https://ebertapp.io/github/HackerExperience/Helix.svg)](https://ebertapp.io/github/HackerExperience/Helix) ![](https://tokei.rs/b1/github/hackerexperience/helix)
# Helix [![Build Status](https://ci.hackerexperience.com/buildStatus/icon?job=HackerExperience/Helix/master)](https://ci.hackerexperience.com/job/HackerExperience/job/Helix/job/master) [![Ebert](https://ebertapp.io/github/HackerExperience/Helix.svg)](https://ebertapp.io/github/HackerExperience/Helix) ![](https://tokei.rs/b1/github/hackerexperience/helix) [![Coverage Status](https://coveralls.io/repos/github/HackerExperience/Helix/badge.svg?branch=master)](https://coveralls.io/github/HackerExperience/Helix?branch=master)
---

Helix is the backend powering the game **Hacker Experience 2**.
Expand Down Expand Up @@ -55,19 +55,19 @@ you can execute elixir code on the terminal. You can alternatively use

| Environment | Required? | Example Value | Description |
|:-- |:--:|:-- |:-- |
|`HELIX_CLUSTER_COOKIE`| true | randomcookie | The secret cookie used to authenticate erlang nodes on a cluster* |
|`HELIX_NODE_NAME`| true | mynode | Each erlang node on a cluster must have a different name; this name is used solely to identify the node on the cluster |
|`HELIX_ENDPOINT_SECRET_KEY`| true | reallyreallylongstring | The secret key used to encrypt the session token |
|`HELIX_ENDPOINT_URL`| true | 127.0.0.1 | The hostname where the Helix server will run |
|`HELIX_DB_USER`| true | postgres | RDBMS username |
|`HELIX_DB_PASS`| true | postgres | RDBMS password |
|`HELIX_DB_HOST`| true | localhost | RDBMS hostname |
|`HELIX_DB_PREFIX`| true | helix | The prefix for the databases used on Helix. Eg: if the prefix is `foobar`, the database for accounts will be `foobar_prod_account` |
|`HELIX_DB_POOL_SIZE`| true | 3 | The amount of connections constantly open for each database |
|`HELIX_SSL_KEYFILE`| true | priv/dev/ssl.key | The path for the keyfile used on HTTPS connections |
|`HELIX_SSL_CERTFILE`| true | priv/dev/sll.crt | The path for the certificate used on HTTPS connections |
|`HELIX_MIGRATION_TOKEN`| false | foobar | Token used to authenticate HEBornMigration application exports |
|`APPSIGNAL_PUSH_API_KEY`| false | abcdef | Key for AppSignal. If this env is not provided, AppSignal won't log errors |
|`HELIX_CLUSTER_COOKIE`| βœ“ | randomcookie | The secret cookie used to authenticate erlang nodes on a cluster* |
|`HELIX_NODE_NAME`| βœ“ | mynode | Each erlang node on a cluster must have a different name; this name is used solely to identify the node on the cluster |
|`HELIX_ENDPOINT_SECRET_KEY`| βœ“ | reallyreallylongstring | The secret key used to encrypt the session token |
|`HELIX_ENDPOINT_URL`| βœ“ | 127.0.0.1 | The hostname where the Helix server will run |
|`HELIX_DB_USER`| βœ“ | postgres | RDBMS username |
|`HELIX_DB_PASS`| βœ“ | postgres | RDBMS password |
|`HELIX_DB_HOST`| βœ“ | localhost | RDBMS hostname |
|`HELIX_DB_PREFIX`| βœ“ | helix | The prefix for the databases used on Helix. Eg: if the prefix is `foobar`, the database for accounts will be `foobar_prod_account` |
|`HELIX_DB_POOL_SIZE`| βœ“ | 3 | The amount of connections constantly open for each database |
|`HELIX_SSL_KEYFILE`| βœ“ | priv/dev/ssl.key | The path for the keyfile used on HTTPS connections |
|`HELIX_SSL_CERTFILE`| βœ“ | priv/dev/sll.crt | The path for the certificate used on HTTPS connections |
|`HELIX_MIGRATION_TOKEN`| βœ• | foobar | Token used to authenticate HEBornMigration application exports |
|`APPSIGNAL_PUSH_API_KEY`| βœ• | abcdef | Key for AppSignal. If this env is not provided, AppSignal won't log errors |

**Notes**

Expand Down
7 changes: 7 additions & 0 deletions coveralls.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,12 @@
"skip_files": [
"deps",
"test"
],
"treat_no_relevant_lines_as_covered": true,
"default_stop_words": [
"defmodule",
"defrecord",
"defimpl",
"def.+(.+\/\/.+).+do"
]
}