This was my first attempt at learning golang. It is a simple todo CRUD API with a React frontend built with Vite and TypeScript.
$ cd /go-api
create a .env file with username, password, host and dbName (all for the database connection)
$ go run main.go
$ cd /go-todo-fe
$ yarn dev or npm run dev
Add database support- Write tests