Skip to content
Open
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
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ A voting system for student Division Meeting (Sektionsmöte).

[Setup Instructions](https://github.com/cthit/VoteIT/wiki/Setup-Instructions-for-Vote-Counters)

or

[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)

[User Instructions](https://github.com/cthit/VoteIT/wiki/User-Instructions)

Server on heroku needs to be kept alive (sleeps after 30 mins of inactivity by default) using something like the following script:
Expand Down
21 changes: 21 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "VoteIT",
"description": "A voting system",
"repository": "https://github.com/cthit/VoteIT",
"logo": "http://imgur.com/3Xwg8XF.png",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps shouldn't refer to logo on imgur? Better to refer to one on GitHub or Chalmers.it

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Where is this logo used?

"keywords": ["node", "voteIT", "voting"],
"env": {
"PASSWORD": {
"description": "Password for /admin",
"required": true
},
"NUM_USERS ": {
"description": "How many users can vote?",
"required": true
},
"CODES_PER_USER": {
"description": "How many codes per user?",
"required": true
}
}
}