From 67a146c5dd9ef11fb383619c58d8b0ea37a95a51 Mon Sep 17 00:00:00 2001 From: quasar Date: Mon, 26 May 2025 16:26:51 +0200 Subject: [PATCH] env example --- backend/.env.example | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 backend/.env.example diff --git a/backend/.env.example b/backend/.env.example new file mode 100644 index 0000000..2923da2 --- /dev/null +++ b/backend/.env.example @@ -0,0 +1,10 @@ +FRANCE_TRAVAIL_CLIENT_ID= +FRANCE_TRAVAIL_CLIENT_SECRET= + +# URLs de l'API France Travail (extraites de document-1.json) +FRANCE_TRAVAIL_TOKEN_URL=https://entreprise.francetravail.fr/connexion/oauth2/access_token +FRANCE_TRAVAIL_API_URL=https://api.francetravail.io/partenaire/offresdemploi/v2/offres/search +FRANCE_TRAVAIL_SCOPE="api_offresdemploiv2 o2dsoffre" # Scopes requis, voir securitySchemes.authentification.clientCredentials.scopes + +# Base de données (PostgreSQL sur serveur distant) +DATABASE_URL="postgresql://user:password@adresseip:5432/db?schema=public" \ No newline at end of file