An open API service indexing awesome lists of open source software.

https://github.com/alkukampela/curling

Multiplayer game with micro services architecture
https://github.com/alkukampela/curling

curl curling docker game traefik

Last synced: about 1 month ago
JSON representation

Multiplayer game with micro services architecture

Awesome Lists containing this project

README

        

# curl://ing

## How to play

1. Run ```bash build.sh```
1. Register first team:

POST http://localhost/games/begin?team=Ykkösjengi

Don't lose the reply, it contains valuable information!
1. Register second team:

POST http://localhost/games/join?team=Kakkosjengi

This has also very important reply!
1. Go to page linked in team registering reply
1. Curl like there's no tomorrow!

## build frontend

```
cd frontend
npm install
npm run build
```

## dev frontend
```
cd frontend
npm install
npm run dev
```

## Clear database

```
docker-compose exec redis redis-cli FLUSHALL
```