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, Italy, England
- Local run
// run frontend (Angular)
cd open-football/ui
npm start
...
// run backend
cd open-football
cargo run
...
open chrome at http://localhost:18000
- Run in Docker
cd open-football
docker build -f .\build\Football.Dockerfile -t open-football .
docker run -d -p 18000:18000 --name open-football open-football
open chrome at http://localhost:18000
Match page example (click on any goals)
Apache License 2.0