https://github.com/jmkoni/voting_app
https://github.com/jmkoni/voting_app
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/jmkoni/voting_app
- Owner: jmkoni
- Created: 2024-01-27T19:45:48.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-12T18:59:49.000Z (about 2 years ago)
- Last Synced: 2025-02-14T17:43:39.024Z (over 1 year ago)
- Language: Ruby
- Size: 34.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Voting App
Deployed on Heroku at [https://voting-app-jmk-b6d06fa85d4c.herokuapp.com/](https://voting-app-jmk-b6d06fa85d4c.herokuapp.com/)
## Overview
This app allows users to vote in a simple "election". All votes come in the form of write-ins. There can be no more than 10 candidates. Everyone is given 5 minutes to vote prior to being logged out. You can only vote once.
## Ruby Version
3.2.2
## Set up
If you have the current ruby version installed (if not, please try RVM or rbenv and install 3.2.2), the following steps will set up this application:
``` shell
brew bundle
bundle install
bundle exec rails db:create
bundle exec rails db:migrate
bundle exec rails s
```
## Tests
Run the tests with `bundle exec rspec`.