List your games, find games to play with others.
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
Finding out what games you have and which games you can play with others should be fast and easy. At the moment, however, the process takes a lot of communication and manual effort.
Thus, the aptly named 'web board games' has been written, it's main features include:
- Fast and minimal, pages are <20kb in size.
- Supports any game in the "Board Game Geek" list.
- Can filter games by player count, playtime, etc.
To get a local copy up and running follow these simple example steps.
- node (tested on v12+)
- npm
npm install npm@latest -g
- mongo
# either from https://www.mongodb.com/ or with Docker:
docker volume create --name=mongodata
docker run -p 27017:27017 --name mongo -v mongodata:/data/db -d mongo
- redis
# either from https://redis.io/ or with Docker:
docker volume create --name=redisdata
docker run -p 6379:6379 --name redis -v redisdata:/data -d redis redis-server --appendonly yes
- Clone the repo
git clone https://github.com/femto-apps/web-board-games
- Install NPM packages
npm install
- Copy
config.default.hjson
toconfig.hjson
cp config.default.hjson config.hjson
- Update the configuration to your liking, specifically you must change
minio.accessKey
,minio.secretKey
,session.secret
andauthenticationProvider.consumerId
See the open issues for a list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE
for more information.
Alexander Craggs - bg@femto.host
Project Link: https://github.com/femto-apps/web-board-games