https://github.com/mjacobus/planning_poker
Planning poker app. Experiment with hanami framework at the hack week
https://github.com/mjacobus/planning_poker
hanami ruby
Last synced: 3 months ago
JSON representation
Planning poker app. Experiment with hanami framework at the hack week
- Host: GitHub
- URL: https://github.com/mjacobus/planning_poker
- Owner: mjacobus
- Created: 2017-03-19T21:04:08.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2022-10-18T22:40:32.000Z (over 3 years ago)
- Last Synced: 2024-04-14T22:20:17.443Z (almost 2 years ago)
- Topics: hanami, ruby
- Language: Ruby
- Homepage:
- Size: 245 KB
- Stars: 3
- Watchers: 5
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Planning Poker
---------------
Planning poker App for remote teams
[](https://travis-ci.org/mjacobus/planning_poker)
[](https://coveralls.io/github/mjacobus/planning_poker?branch=master)
[](https://codeclimate.com/github/mjacobus/planning_poker)
[](https://scrutinizer-ci.com/g/mjacobus/planning_poker/?branch=master)
[](https://gemnasium.com/github.com/mjacobus/planning_poker)
### Project Setup
Installing dependencies, creates database
```bash
bundle install
bundle exec hanami db prepare
bundle exec hanami db migrate
```
Starting the server:
```bash
bundle exec hanami server
```
Navigate to [localhost:2300](http://localhost:2300)
### Running the tests
```bash
HANAMI_ENV=test bundle exec hanami db prepare
HANAMI_ENV=test bundle exec hanami db migrate
```
Running the tests
```bash
bundle exec rspec
```
Navigate to [localhost:2300](http://localhost:2300)
### Project Setup Frontend
Install dependencies:
```bash
cd client
npm install
```
Start dev server:
```bash
cd client
npm run start
```
Navigate to [localhost:3000](http://localhost:3000)
Build:
```bash
cd client
npm run build
```