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

https://github.com/rickbarretto/eleventh

Eleventh is a turn-based card game inspired by FIFA’s Ultimate Team cards and the strategic style of Soccer Manager. This Project was intended for the TEC502 Concurrency & Connectivity's Problem Based Learning.
https://github.com/rickbarretto/eleventh

asyncio card-game concurrency football game http network-programming pbl socket

Last synced: 7 months ago
JSON representation

Eleventh is a turn-based card game inspired by FIFA’s Ultimate Team cards and the strategic style of Soccer Manager. This Project was intended for the TEC502 Concurrency & Connectivity's Problem Based Learning.

Awesome Lists containing this project

README

          

# Eleventh

Only 11 wins.

**Eleventh** is a turn-based card game inspired by FIFA’s Ultimate Team cards and the strategic style of Soccer Manager.
Players build their own dream team using collectible cards, manage tactics, and compete in tactical duels against other managers.

## Routine Tests

```sh
$ cargo run -p server
```

### Account Creation

```sh
$ curl http://127.0.0.1:8080/accounts/
$ curl -X POST http://127.0.0.1:8080/accounts/create/ -d '{"username": "Rick", "password": "123456"}'
$ curl -X POST http://127.0.0.1:8080/accounts/login/ -d '{"username": "Rick", "password": "123456"}'
```