WordSprint is a static-first multilingual game site for GitHub Pages.
Live URL:
https://ismailkorkmaz1905.github.io/wordsprint/
pip install -r requirements.txtpython apps/wordgames/serve.pyThen open http://127.0.0.1:5051.
/en/tr/nl/id/ms/en/daily-ladder/en/word-scramble/en/typo-hunt/tr/daily-ladder/tr/word-scramble/tr/typo-hunt/nl/daily-ladder/nl/word-scramble/nl/typo-hunt/id/daily-ladder/id/word-scramble/id/typo-hunt/ms/daily-ladder/ms/word-scramble/ms/typo-hunt
Run the static export locally:
$env:WORDSPRINT_BASE_PATH="/wordsprint"
python apps/wordgames/export_static.pyThe export writes the static site to dist.
Test the exported site locally:
mkdir C:\tmp\pages-test\wordsprint
Copy-Item -Recurse -Force dist\* C:\tmp\pages-test\wordsprint\
python -m http.server 8000 --directory C:\tmp\pages-testThen open:
http://localhost:8000/wordsprint/
The GitHub Actions workflow deploys dist to:
https://ismailkorkmaz1905.github.io/wordsprint/
Player data is localStorage-only. The GitHub Pages version has no server-side database, profile POST endpoint, or backend usage tracking.
- Server log files stay untracked.