This is the server part, the client part can be found here https://github.com/Alounv/coinche-front.
A simple multiplayer coinche game.
You can play here: https://coinche.vercel.app/
This is a personal project to learn:
- Golang
- Test Driven Development
- Clean Architecture
- PostgreSQL
- WebSockets
go run main.goTo create a production version of your app:
go run buildYou can preview the production build with ./coinche.
## Developing
```bash
bun run dev
# or start the server and open the app in a new browser tab
bun run dev -- --openTo create a production version of your app:
bun run buildYou can preview the production build with bun run preview.
PORT=:5000
SQLX_POSTGRES_INFO="host=localhost user=aloun password=ILovePostgres port=5432"
DB_NAME=coincheDb
