mirror of
https://github.com/arthur-pbty/pomodoro.git
synced 2026-06-24 14:18:27 +02:00
feat: implement TodoList component with filtering and priority management
feat: add useAmbientSound hook for ambient sound management feat: create useLocalStorage hook for persistent state management feat: develop useTheme hook for theme switching functionality feat: implement useTimer hook for Pomodoro timer logic feat: create useTodos hook for managing todo list functionality style: add global styles and custom scrollbar for better UI experience chore: set up main entry point for the application feat: define types for Timer, Todo, and Statistics feat: create utility function for class name merging chore: configure Tailwind CSS for styling chore: set up TypeScript configuration for the project chore: configure Vite for development and build process
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
# FocusPomodoro
|
||||
|
||||
Application Pomodoro moderne construite avec React, Vite et Tailwind CSS.
|
||||
|
||||
## Site en ligne
|
||||
|
||||
Lien officiel: https://pomodoro.arthurp.fr
|
||||
|
||||
Ce lien est la référence publique du projet pour le référencement et le partage.
|
||||
|
||||
## Stack technique
|
||||
|
||||
- React 19
|
||||
- Vite 7
|
||||
- TypeScript
|
||||
- Tailwind CSS 4
|
||||
- Nginx (via Docker)
|
||||
|
||||
## Lancer en local
|
||||
|
||||
```bash
|
||||
npm install
|
||||
npm run dev
|
||||
```
|
||||
|
||||
## Build de production
|
||||
|
||||
```bash
|
||||
npm run build
|
||||
npm run preview
|
||||
```
|
||||
|
||||
## Déploiement Docker
|
||||
|
||||
```bash
|
||||
docker compose up --build
|
||||
```
|
||||
|
||||
## Sécurité et publication
|
||||
|
||||
- Les artefacts locaux sont exclus via `.gitignore` (`dist/`, `node_modules/`, fichiers `.env*`).
|
||||
- Le projet est prêt pour un premier push GitHub.
|
||||
Reference in New Issue
Block a user