https://github.com/jonasleonhard/tigo
time tracker
https://github.com/jonasleonhard/tigo
go htmx just sqlite tailwind
Last synced: 2 months ago
JSON representation
time tracker
- Host: GitHub
- URL: https://github.com/jonasleonhard/tigo
- Owner: JonasLeonhard
- Created: 2023-11-16T08:42:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-29T15:32:51.000Z (over 2 years ago)
- Last Synced: 2025-04-05T09:30:07.987Z (about 1 year ago)
- Topics: go, htmx, just, sqlite, tailwind
- Language: Go
- Homepage:
- Size: 235 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About
Tigo. A work in progress local timetracking webapp using go and htmx
Features:
- Track your time
- The time is stored in a local sqlite file

# Starting the app:
0. setup your env file from the example.env!
1. watch for tailwind changes
```bash
just css
```
2. watch for go changes and run the server
```bash
just dev
```
3. watch for template changes in templ
```bash
just templ
```
You should now be able to view the hotreloading app on localhost:7331
# Building tailwind styles for templates
```bash
just css
```
# Rebuilding the ent db schema
```bash
just ent
```
# Running in dev mode & reload after making changes
```bash
just dev
```
# Running app
```bash
just run
```