A todo application using websockets.
This todo app is very limited at the moment. All updates are sent via WebSockets.
Highlight: The websocket end-points are type-safe on the server and the client.
All of the following are not yet implemented, but are planned:
- There is no authentication / authorization
- Sub-Tasks
Make sure to install dependencies:
bun install
Create the .env file and add your PostgreSQL connection as DATABASE_UR
cp .env.example .env
Make sure you have your PostgreSQL database running.
Start the development server on http://localhost:3000
:
bun run dev