The purpose of this game is to collect an open database of Karakalpak words
Download database:
Send HTTP GET request to https://sozle.qaraqalpaq.org/api/db
and then rename the downloaded file with extension .sqlite3
Database schema:
id
- autoincrement primary key
word
- 5 letter word candidate
score
- float between 0 and 1 to check how real word is. (currently guessed words get 0 shared words 0.3)
id | word | score |
---|---|---|
1 | qálem | 0 |
2 | sálem | 0.3 |
Collect as many as possible words. Currently, the score for guessed words is 0, and for shared words 0.3
We have to re-score all possible word candidates. (How? IDK I haven't planned yet.)
Feel free to create an issue or PR
Make sure to install the dependencies:
pnpm install --shamefully-hoist
Start the development server on http://localhost:3000
pnpm dev -o
Build the application for production:
pnpm build
Locally preview production build:
pnpm preview