Attempt to implement Sigames Football Manager simulation engine without manual control.
It is not gamable right now and I need a lot of work to make it workable.
Currently, most of elements are stubs, but I change it step by step
Currently available nation for simulation - Russia
- Local run
// run frontend (Angular)
cd football-simulator/ui
npm start
...
// run backend
cd football-simulator
cargo run
...
open chrome at http://localhost:18000
- Run in Docker
cd football-simulator
docker build -f .\build\Football.Dockerfile -t football-simulator .
docker run -d -p 18000:18000 --name football-simulator football-simulator
open chrome at http://localhost:18000
Apache License 2.0