https://github.com/tktcorporation/planning-poker
  
  
     
    https://github.com/tktcorporation/planning-poker
  
        Last synced: 7 months ago 
        JSON representation
    
- Host: GitHub
 - URL: https://github.com/tktcorporation/planning-poker
 - Owner: tktcorporation
 - Created: 2021-10-31T20:30:48.000Z (about 4 years ago)
 - Default Branch: master
 - Last Pushed: 2023-03-06T14:42:27.000Z (over 2 years ago)
 - Last Synced: 2025-02-09T14:19:15.449Z (9 months ago)
 - Language: TypeScript
 - Homepage: planning-poker-dun.vercel.app
 - Size: 4.02 MB
 - Stars: 0
 - Watchers: 3
 - Forks: 0
 - Open Issues: 9
 - 
            Metadata Files:
            
- Readme: README.md
 
 
Awesome Lists containing this project
README
          # planning-poker
[](https://github.com/tktcorporation/planning-poker/actions/workflows/test.yml)
## Prerequirements
-   Docker, docker-compose
## Get Started
### Env Vars
1. `cp -p .envrc.sample .envrc` and set variables.
1. Install [direnv](https://github.com/direnv/direnv).
1. `direnv allow`
### Develop
1. `docker-compose run app /bin/bash`
#### Test
```bash
RUST_BACKTRACE=1 cargo test
```
#### Linter, Formatter
-   Lint
```bash
yarn lint
```
-   Format
```bash
yarn format
```
##### Task Runner
[act](https://github.com/nektos/act) can use as a task runner in this project.  
But, it takes longer than `yarn` commands.
```bash
# lint, format(check), test
act
```