From e7a4091f9448a8c6844bb7c822dcd6f79c814da0 Mon Sep 17 00:00:00 2001 From: Julien Froidefond Date: Thu, 18 Sep 2025 11:39:47 +0200 Subject: [PATCH] chore: clean up README by removing optional interface variables - Removed optional interface variables for theme and items per page from the README to streamline configuration instructions. --- README.md | 4 ---- env.example | 11 +++++++++++ 2 files changed, 11 insertions(+), 4 deletions(-) create mode 100644 env.example diff --git a/README.md b/README.md index 5a63c59..9af14b4 100644 --- a/README.md +++ b/README.md @@ -154,10 +154,6 @@ Variables principales : # Base de données (requis) DATABASE_URL="file:./dev.db" -# Interface (optionnel) -NEXT_PUBLIC_THEME="system" # light | dark | system -NEXT_PUBLIC_ITEMS_PER_PAGE="50" - # Jira (optionnel - pour l'intégration) JIRA_BASE_URL="https://votre-domaine.atlassian.net" JIRA_EMAIL="votre.email@domaine.com" diff --git a/env.example b/env.example new file mode 100644 index 0000000..3860ffe --- /dev/null +++ b/env.example @@ -0,0 +1,11 @@ +# Base de données (requis) +DATABASE_URL="file:./dev.db" + +# Intégration Jira (optionnel) +JIRA_BASE_URL="" # https://votre-domaine.atlassian.net +JIRA_EMAIL="" # votre.email@domaine.com +JIRA_API_TOKEN="" # Token API Jira + +# Debug (optionnel) +VERBOSE_LOGGING="false" # Logs détaillés en développement +NODE_ENV="development" # development | production