- Created a .cursorignore file to manage local environment files. - Updated .env.example to reflect changes in the public app URL. - Modified the gmail workspace configuration to include the drive-suite path. - Enhanced email view components to support attachment handling and fallback for plain text bodies. - Improved user experience by updating attachment display logic and integrating inline attachment support.
16 lines
753 B
Plaintext
16 lines
753 B
Plaintext
# API backend — URL relative : Next.js proxy vers nginx (:80), pas de CORS en dev
|
|
NEXT_PUBLIC_API_URL=/api/v1
|
|
NEXT_PUBLIC_WS_URL=ws://localhost/ws
|
|
# Cible du proxy Next (optionnel, défaut 127.0.0.1:80)
|
|
# ULTI_PROXY_ORIGIN=http://127.0.0.1
|
|
|
|
# OIDC Authentik (blueprints deploy/authentik dans ulti-backend)
|
|
NEXT_PUBLIC_OIDC_ISSUER=http://localhost/auth/application/o/ulti/
|
|
NEXT_PUBLIC_OIDC_CLIENT_ID=ulti-backend
|
|
# URL publique affichée dans les redirects OIDC (navigateur) — utiliser localhost, pas 0.0.0.0
|
|
# URL publique navigateur (suite nginx) — pas :3000 si tu passes par http://localhost/mail
|
|
NEXT_PUBLIC_APP_URL=http://localhost
|
|
|
|
# Secret serveur uniquement — doit matcher ULTID_OIDC_CLIENT_SECRET / blueprint
|
|
OIDC_CLIENT_SECRET=changeme
|