justone/README.md

45 lines
589 B
Markdown

# Just One
A simple cooperative party game.
Guess the secret words, support the active guesser with associations on small white boards.
But don't talk to each other!
https://www.asmodee.de/produkte/just-one
## Local hosting
### Initial install
```
npm ci
npm run build
```
### Serving the files
```
python -m http.server -d dist
```
## Development
```sh
npm install
```
### Compile and Hot-Reload for Development
```sh
npm run dev
```
### Type-Check, Compile and Minify for Production
```sh
npm run build
```
### Lint with [ESLint](https://eslint.org/)
```sh
npm run lint
```