100 lines
3.0 KiB
Markdown
100 lines
3.0 KiB
Markdown
---
|
|
title: Eigenfocus
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, project-management, app-marathon-batch-b]
|
|
confidence: medium
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=Project+Management&app=eigenfocus, https://github.com/Eigenfocus/eigenfocus]
|
|
---
|
|
|
|
# 📊 Eigenfocus
|
|
|
|
> **Focus / project tracking personnel** : tâches, projets, time-boxing, vue focus. L'outil minimaliste pour "deep work" et organisation solo.
|
|
|
|
## 📋 Informations Génériques
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | [github.com/Eigenfocus/eigenfocus](https://github.com/Eigenfocus/eigenfocus) |
|
|
| **GitHub** | [Eigenfocus/eigenfocus](https://github.com/Eigenfocus/eigenfocus) |
|
|
| **License** | AGPL-3.0 |
|
|
| **Langage** | Ruby (Rails) + Vue |
|
|
| **Étoiles GitHub** | 0.4k ⭐ |
|
|
| **Catégorie** | [[cat-project-management|Project Management]] |
|
|
|
|
## 📝 Description
|
|
|
|
**Eigenfocus** est un **focus tracker personnel** : projets, tâches, time-boxing, statistiques, mode focus (timer Pomodoro-like). Il vise l'organisation d'un seul utilisateur qui veut structurer sa journée sans la complexité d'un outil d'équipe.
|
|
|
|
Différence vs Tududi : Tududi = GTD classique. Eigenfocus = **focus/timer-first**, moins de catégorisation, plus de chronologie.
|
|
|
|
Pour qui : développeurs, chercheurs, écrivains qui veulent un compagnon "deep work" self-hosted.
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose (esquisse)
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
eigenfocus:
|
|
image: eigenfocus/eigenfocus:latest
|
|
container_name: eigenfocus
|
|
restart: unless-stopped
|
|
environment:
|
|
- RAILS_ENV=production
|
|
- DATABASE_URL=postgresql://eigenfocus:***@db:5432/eigenfocus
|
|
- SECRET_KEY_BASE=*** volumes:
|
|
- eigenfocus_data:/app/storage
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.eigenfocus.rule=Host(`focus.example.com`)"
|
|
- "traefik.http.routers.eigenfocus.entrypoints=websecure"
|
|
- "traefik.http.routers.eigenfocus.tls.certresolver=letsencrypt"
|
|
depends_on:
|
|
- db
|
|
|
|
db:
|
|
image: postgres:16-alpine
|
|
environment:
|
|
- POSTGRES_USER=eigenfocus
|
|
- POSTGRES_PASSWORD=*** - POSTGRES_DB=eigenfocus
|
|
volumes:
|
|
- eigenfocus_db:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
eigenfocus_data:
|
|
eigenfocus_db:
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-tududi]] — GTD simple
|
|
- [[app-focalboard]] — Kanban Notion-like
|
|
- **Kimai** — Time tracking
|
|
- **Traggo** — Time tracking tags
|
|
|
|
### Propriétaires
|
|
- **Toggl Track** — Time tracking
|
|
- **Clockify** — Gratuit time tracking
|
|
- **Focus To-Do** — Pomodoro + tasks
|
|
- **Notion** — Workspace flexible
|
|
|
|
## 🔐 Sécurité
|
|
- **Auth** : email/password
|
|
- **HTTPS** : via reverse proxy
|
|
- **Pas de 2FA** : usage personnel
|
|
- **Sessions Rails** : cookies sécurisés
|
|
|
|
## 📚 Ressources
|
|
- [GitHub](https://github.com/Eigenfocus/eigenfocus)
|
|
- [Issues](https://github.com/Eigenfocus/eigenfocus/issues)
|
|
|
|
## Pages Liées
|
|
- [[cat-project-management]] — Catégorie Project Management
|
|
- [[app-tududi]] — Concurrent
|
|
- [[recettes-docker-compose]] — Templates Docker
|