Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pashagolub/pgwordle
https://github.com/pashagolub/pgwordle
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/pashagolub/pgwordle
- Owner: pashagolub
- License: mit
- Created: 2023-05-30T10:20:53.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-13T06:47:00.000Z (2 months ago)
- Last Synced: 2024-10-12T06:15:46.618Z (about 1 month ago)
- Language: PLpgSQL
- Size: 12.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pgwordle
This is the repo with source code for my talk "Customizing the Wordle Game"
## Use
### Docker Compose
* Clone the repo and cd into the folder
* `docker compose up -d --force-recreate`
* `docker compose exec postgres psql -U postgres`
* Have fun!### Custom environment
* Download scripts or clone the repo.
* Execute the `bootstrap.sql` in the target database.
* Put these lines into your `.psqlrc` and then use `:wordle` command to play the game:```
\echo Use ":wordle" to begin the game!
\set wordle '\\i ~/start.psql'
```Change the path according to your situation, if home dir doesn't work for you.