Fork di lean4game del PHC per la settimana matematica del 2025 https://lean4game.phc.dm.unipi.it/
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Go to file
Antonio De Lucreziis 61ed224788 added fork info to readme 1 year ago
.github/workflows add manual trigger to github action 2 years ago
.vscode Fix minor typos 2 years ago
client add new game 1 year ago
doc Update publish_game.md 1 year ago
relay Adjust memory to be approx. the same as by htop 1 year ago
server Update LetIntros.lean 2 years ago
.dockerignore feat: added dockerfile and dockercompose 1 year ago
.gitignore Fixed display error of server capacity by performing rounding as last step. 1 year ago
Dockerfile feat: added dockerfile and dockercompose 1 year ago
LICENSE Create LICENSE 3 years ago
NOTES.md remove docker isntructions 3 years ago
NOTES_SUBDOMAIN.md notes subdomain 4 years ago
README.md added fork info to readme 1 year ago
bun.lock feat: added dockerfile and dockercompose 1 year ago
docker-compose.yml some docs 1 year ago
ecosystem.config.cjs separate lean server from socket server 3 years ago
env.d.ts fix redirect from landing page in dev container #145 3 years ago
index.html add note for servers with different base url 2 years ago
package-lock.json update npm deps 2 years ago
package.json implement i18next and i18next-scanner 2 years ago
tsconfig.json fix ts warnings 2 years ago
vite.config.ts add note for servers with different base url 2 years ago

README.md

lean4game fork

Questo è un fork di lean4game con supporto per essere self-hostato con Docker.

Deployment con Docker Compose

Dopo aver clonato questa repo, per prima cosa serve creare un token di API per GitHub per permettere a lean4game di importare da solo i vari "game". Possiamo mettere questo token ed il nostro nome utente in un file .env come segue

export LEAN4GAME_GITHUB_USER='...'
export LEAN4GAME_GITHUB_TOKEN='...'

poi per lanciare tutto con docker compose basta eseguire

$ source .env
$ docker compose up -d

Questo comando lancierà lean4game su http://locahost:8080.

Aggiungere Giochi

Per scaricare nuovi giochi basta fare una chiamata al seguente url

  • https://{host}/import/trigger/{org}/{repo}

Ad esempio per scaricare https://github.com/leanprover-community/nng4 basta andare all'indirizzo https://{host}/import/trigger/leanprover-community/nng4 per aggiungere Natural Number Game.


Lean 4 Game

This is the source code for a Lean game platform hosted at adam.math.hhu.de.

Creating a Game

Please follow the tutorial Creating a Game. In particular, the following steps might be of interest:

Documentation

The documentation is very much work in progress but the linked documentation here should be up-to-date:

Game creation API

Frontend API

Backend

not fully written yet.

  • Server: describes the server part (i.e. the content of server/ und relay/).

Contributing

Contributions to lean4game are always welcome!

Translation

The interface can be translated to various languages. For adding a translation, one needs to do the following:

  1. In client/src/config.json, add your new language. The "iso" key is the ISO language code, i.e. it should be accepted by "i18next" and "GNU gettext"; the "flag" key is once accepted by react-country-flag.
  2. Run npm run translate. This should create a new file client/public/locales/{language}/translation.json. (alternatively you can copy-paste client/public/locales/en/translation.json)
  3. Add all translations.
  4. Commit the changes you made to config.json together with the new translation.json.

For translating games, see Translating a game.

Security

Providing the use access to a Lean instance running on the server is a severe security risk. That is why we start the Lean server with bubblewrap.

Credits

The project has primarily been developed by Alexander Bentkamp and Jon Eugster.

It is based on ideas from the Lean Game Maker and the Natural Number Game (NNG) by Kevin Buzzard and Mohammad Pedramfar, and on Patrick Massot's prototype: NNG4.