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.
- Host: GitHub
- URL: https://github.com/rickbarretto/eleventh
- Owner: RickBarretto
- License: mpl-2.0
- Created: 2025-08-16T15:08:36.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-08-31T17:15:00.000Z (7 months ago)
- Last Synced: 2025-08-31T19:14:19.612Z (7 months ago)
- Topics: asyncio, card-game, concurrency, football, game, http, network-programming, pbl, socket
- Language: Rust
- Homepage:
- Size: 468 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"}'
```