Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mavend/octoboard
Collection of games that may help you and your friends kill the boredom of COVID19 quarantine.
https://github.com/mavend/octoboard
board-game boardgame boardgame-io game javascript-game react
Last synced: 3 months ago
JSON representation
Collection of games that may help you and your friends kill the boredom of COVID19 quarantine.
- Host: GitHub
- URL: https://github.com/mavend/octoboard
- Owner: mavend
- License: agpl-3.0
- Created: 2020-03-22T12:34:37.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-23T01:27:53.000Z (almost 2 years ago)
- Last Synced: 2024-08-03T13:05:48.069Z (6 months ago)
- Topics: board-game, boardgame, boardgame-io, game, javascript-game, react
- Language: JavaScript
- Homepage:
- Size: 23.2 MB
- Stars: 17
- Watchers: 4
- Forks: 0
- Open Issues: 40
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![Deploy status](https://github.com/mavend/octoboard/actions/workflows/master.yml/badge.svg?branch=master)
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)# Octoboard
![Octoboard banner](.github/banner.png)
This is a collection of games that may help you and your friends kill the boredom of COVID19 quarantine.
## Development
Install dependencies `npm install`. To run firebase emulator in development you also need to install Java Development Kit `jdk`.
Run development stack (react client, node server, firebase emulators, storybook) with `npm start`
Setting `debug=true` in URL query will show debug overlay.
### Ports
To make local development easier the services are started on the following custom ports (this helps avoid conflicts with other services running locally):
| Service | Port |
| --------- | ----- |
| Server | 11080 |
| Client | 11030 |
| Storybook | 11090 |
| Firestore | 11180 |
| Auth | 11190 |
| Hosting | 11150 |
| Emulators | 11140 |### Running individual services
Sometimes you may want to run parts of application on their own. You can do this like this:
- Run firebase emulators with `npm run start:firebase`.
- Run react dev server with `npm run start:client`.
- Run game server with: `npm run start:server`.
- Run storybook wiht: `npm run start:storybook`.## Note
This project uses the [boardgame.io](https://boardgame.io) framework which is open source game engine for turn-based games.
Licensed under [GNU AGPLv3](https://choosealicense.com/licenses/agpl-3.0/).