Track credits and debts among your friends.
- Split travel expenses
- Split restaurant bills
Schema diagram created with dbdiagram.io
| Tool | Purpose |
|---|---|
migrate |
Schema migration |
sqlc |
ORM |
- Useful
makecommands to set up your dev env
Migrate up and migrate down are included in `Makefile
Migrate up
sslmode=disabled is necessary as SSL is not enabled on the pgsql server by default
migrate -path db/migrations -database "postgresql://root:password@localhost:5432/split_app?sslmode=disabled" -verbose upsqlc was used as an ORM for Go.