Initial vault setup
This commit is contained in:
@@ -0,0 +1,77 @@
|
||||
---
|
||||
title: Ziit
|
||||
created: 2026-06-08
|
||||
updated: 2026-06-08
|
||||
type: app
|
||||
tags: [catalogue, time-tracking, app-marathon3-rattrapage-final-a]
|
||||
confidence: medium
|
||||
contested: false
|
||||
sources: [https://selfh.st/apps/?tag=Time%20Tracking&app=ziit]
|
||||
---
|
||||
|
||||
# 🟢 Ziit
|
||||
|
||||
> Time tracking self-hosted minimaliste — pour ceux qui veulent juste savoir combien de temps ils passent.
|
||||
|
||||
## 📋 Informations Génériques
|
||||
|
||||
| Champ | Valeur |
|
||||
| :--- | :--- |
|
||||
| **Site web** | (projet GitHub) |
|
||||
| **GitHub** | [okso-sem/ziit](https://github.com/okso-sem/ziit) ou fork |
|
||||
| **License** | MIT |
|
||||
| **Langage** | TypeScript |
|
||||
| **Étoiles GitHub** | < 0.2k ⭐ |
|
||||
| **Catégorie** | [[cat-time-tracking\|Time Tracking]] |
|
||||
|
||||
## 📝 Description
|
||||
|
||||
**Ziit** est un outil de time tracking personnel très léger : démarrage/arrêt d'un timer, liste des sessions, projets, export. L'emphase est sur la **vitesse de saisie** et le **local-first**.
|
||||
|
||||
Différence vs Timetagger : positionnement encore plus minimal, parfois mono-fichier. Pour qui : développeurs voulant un Toggl-like perso sans login.
|
||||
|
||||
## 🚀 Installation
|
||||
|
||||
### Docker Compose (recommandé)
|
||||
|
||||
```yaml
|
||||
version: '3.8'
|
||||
services:
|
||||
ziit:
|
||||
image: ghcr.io/okso-sem/ziit:latest
|
||||
container_name: ziit
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- PORT=3000
|
||||
- DATABASE_URL=file:./data/ziit.db
|
||||
volumes:
|
||||
- ./data:/app/data
|
||||
labels:
|
||||
traefik.enable: "true"
|
||||
traefik.http.routers.ziit.rule: "Host(`time.example.com`)"
|
||||
```
|
||||
|
||||
## 🔄 Alternatives
|
||||
|
||||
### Open Source
|
||||
- [[app-timetagger]] — Timetagger
|
||||
- [[app-solidtime]] — solidtime multi-user
|
||||
- [[app-kimai]] — Kimai complet
|
||||
|
||||
### Propriétaires
|
||||
- **Toggl Track** — SaaS leader
|
||||
- **Clockify** — Freemium
|
||||
- **WakaTime** — Tracking auto depuis IDE
|
||||
|
||||
## 🔐 Sécurité
|
||||
- **Données personnelles** : hôte dédié
|
||||
- **Auth** : simple, à exposer derrière un reverse proxy authentifié si multi-user
|
||||
- **Backups** : export CSV/JSON
|
||||
|
||||
## 📚 Ressources
|
||||
- [GitHub](https://github.com/okso-sem/ziit)
|
||||
|
||||
## Pages Liées
|
||||
- [[cat-time-tracking]] — Catégorie Time Tracking
|
||||
- [[app-timetagger]] — Concurrent minimaliste
|
||||
- [[recettes-docker-compose]] — Templates Docker
|
||||
Reference in New Issue
Block a user