https://github.com/garnizeh/dimdim
https://github.com/garnizeh/dimdim
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/garnizeh/dimdim
- Owner: garnizeh
- License: mit
- Created: 2024-05-03T17:59:54.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-03T05:33:56.000Z (over 1 year ago)
- Last Synced: 2025-03-03T06:25:54.963Z (over 1 year ago)
- Language: Go
- Size: 141 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# dimdim
Personal project to manage domestic finances.
## Tech Stack
- main language: [go](https://go.dev)
- ui: [pico css](https://picocss.com)
- database: [sqlite](https://www.sqlite.org)
### Libraries
- migration: [goose](https://github.com/pressly/goose)
- sql: [sqlc](https://sqlc.dev)
- http: [echo](https://echo.labstack.com/)
### Make Rules
To install goose and sqlc:
```
make install
```
To create a new migration file in sql: `make migrate-create NAME=`
```
make migrate-create NAME=add-table-users
```