https://github.com/jonasleonhard/tigo
time tracker
https://github.com/jonasleonhard/tigo
go htmx just sqlite tailwind
Last synced: about 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 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-29T15:32:51.000Z (over 1 year ago)
- Last Synced: 2025-02-17T20:45:10.151Z (4 months 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 htmxFeatures:
- 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
```