From 9ae67b27c0cae6693782cc70a29c801544b59032 Mon Sep 17 00:00:00 2001 From: dev4 Date: Wed, 17 Sep 2025 15:59:00 +0000 Subject: [PATCH] feat: ajout .env.exemple pour CI build --- .env.exemple | 62 +++++++++++++++++++++++++++------------------------- 1 file changed, 32 insertions(+), 30 deletions(-) diff --git a/.env.exemple b/.env.exemple index 9a7a5fa..89f391f 100644 --- a/.env.exemple +++ b/.env.exemple @@ -1,38 +1,40 @@ -# Configuration OVH -OVH_APP_KEY= -OVH_APP_SECRET= -OVH_CONSUMER_KEY= -OVH_SMS_SERVICE_NAME= +# Configuration backend lecoffre-back-mini +# Variables d'environnement pour le build et le runtime -# Configuration SMS Factor -SMS_FACTOR_TOKEN= +# Port du serveur +PORT=8080 -# Configuration Mailchimp -MAILCHIMP_API_KEY= -MAILCHIMP_KEY= -MAILCHIMP_LIST_ID= +# Configuration ID.not +IDNOT_API_KEY=your_idnot_api_key_here +IDNOT_CLIENT_ID=your_idnot_client_id_here +IDNOT_CLIENT_SECRET=your_idnot_client_secret_here +IDNOT_BASE_URL=https://api.idnot.fr +IDNOT_ANNUARY_BASE_URL=https://annuaire.idnot.fr # Configuration Stripe -STRIPE_SECRET_KEY= -STRIPE_WEBHOOK_SECRET= -STRIPE_STANDARD_SUBSCRIPTION_PRICE_ID= -STRIPE_STANDARD_ANNUAL_SUBSCRIPTION_PRICE_ID= -STRIPE_UNLIMITED_SUBSCRIPTION_PRICE_ID= -STRIPE_UNLIMITED_ANNUAL_SUBSCRIPTION_PRICE_ID= +STRIPE_SECRET_KEY=sk_test_your_stripe_secret_key_here +STRIPE_WEBHOOK_SECRET=whsec_your_webhook_secret_here +STRIPE_STANDARD_SUBSCRIPTION_PRICE_ID=price_your_standard_monthly_price_id +STRIPE_STANDARD_ANNUAL_SUBSCRIPTION_PRICE_ID=price_your_standard_yearly_price_id +STRIPE_UNLIMITED_SUBSCRIPTION_PRICE_ID=price_your_unlimited_monthly_price_id +STRIPE_UNLIMITED_ANNUAL_SUBSCRIPTION_PRICE_ID=price_your_unlimited_yearly_price_id -# Cartes de test Stripe -SUCCES= 4242 4242 4242 4242 #Paiement réussi -DECLINED= 4000 0025 0000 3155 #Paiement refusé +# Configuration SMS +SMS_FACTOR_TOKEN=your_sms_factor_token_here +OVH_APP_KEY=your_ovh_app_key_here +OVH_APP_SECRET=your_ovh_app_secret_here +OVH_CONSUMER_KEY=your_ovh_consumer_key_here +OVH_SMS_SERVICE_NAME=your_ovh_sms_service_name -# Configuration serveur -APP_HOST= +# Configuration Email +MAILCHIMP_API_KEY=your_mailchimp_api_key_here +MAILCHIMP_KEY=your_mailchimp_key_here +MAILCHIMP_LIST_ID=your_mailchimp_list_id_here -# Configuration PostgreSQL -DB_HOST= -DB_PORT= -DB_NAME= -DB_USER= -DB_PASSWORD= +# Configuration SDK Signer +SIGNER_BASE_URL=http://localhost:3001 +SIGNER_API_KEY=your_signer_api_key_here -# Configuration idnot -IDNOT_API_KEY= +# Configuration générale +NODE_ENV=development +LOG_LEVEL=info