Monorepo Turborepo (pnpm workspaces) avec 3 packages :
- apps/web : SPA React 19 + Vite 8 + Tailwind v4 (CSS-first)
• TanStack Router (file-based, auto code-splitting), Query, Form
• Radix primitives bruts + CVA + clsx + tailwind-merge
• MSW pour mocker l'API tant qu'Adonis n'est pas branché
• Polices Bricolage Grotesque + Inter self-hostées via fontsource
• Tokens marque (rubis, cream, ink) exposés via @theme
• Primitives maison : Gem, Brand, Eyebrow, Button, Input, Field
• Route /login full flow : TanStack Form + Zod + mutation Query
- apps/api : Adonis 7 (kit api, scaffold via create-adonisjs)
• Auth access tokens (Bearer) — cf. ADR-017
• Tuyau core déjà câblé pour la génération de types
• Routes /api/v1/auth/{signup,login} + /api/v1/account/{profile,logout}
• Minimal — uniquement le pont front ↔ back
- packages/shared : types TS + schemas Zod + constantes
• Source unique de vérité partagée api ↔ web
• Domaines : User, Org, Auth, Client, Invoice, Plan
Tooling racine : Turbo, ESLint v9 flat, Prettier, husky, lint-staged.
CLAUDE.md et docs/decisions.md mis à jour avec ADR-014 à ADR-018
(stack, monorepo, PG existant, Bearer tokens, MinIO existant)
et le pointeur vers docs/tech/architecture.md.
Logo Rubis déplacé de landing/assets/ vers /assets/ (source unique
réutilisée par la landing et l'app).
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
94 lines
2.4 KiB
TypeScript
94 lines
2.4 KiB
TypeScript
import env from '#start/env'
|
|
import app from '@adonisjs/core/services/app'
|
|
import { defineConfig } from '@adonisjs/core/http'
|
|
|
|
/**
|
|
* The app key is used for encrypting cookies, generating signed URLs,
|
|
* and by the "encryption" module.
|
|
*
|
|
* The encryption module will fail to decrypt data if the key is lost or
|
|
* changed. Therefore it is recommended to keep the app key secure.
|
|
*/
|
|
export const appKey = env.get('APP_KEY')
|
|
|
|
/**
|
|
* The app URL can be used in various places where you want to create absolute
|
|
* URLs to your application. For example, when sending emails, images should
|
|
* use absolute URLs.
|
|
*/
|
|
export const appUrl = env.get('APP_URL')
|
|
|
|
/**
|
|
* The configuration settings used by the HTTP server
|
|
*/
|
|
export const http = defineConfig({
|
|
/**
|
|
* Generate a unique request id for each incoming request.
|
|
* Useful to correlate logs and debug a request flow.
|
|
*/
|
|
generateRequestId: true,
|
|
|
|
/**
|
|
* Allow HTTP method spoofing via the "_method" form/query parameter.
|
|
* This lets HTML forms target PUT/PATCH/DELETE routes while still
|
|
* submitting with POST.
|
|
*/
|
|
allowMethodSpoofing: false,
|
|
|
|
/**
|
|
* Enabling async local storage will let you access HTTP context
|
|
* from anywhere inside your application.
|
|
*/
|
|
useAsyncLocalStorage: false,
|
|
|
|
/**
|
|
* Redirect configuration controls the behavior of
|
|
* response.redirect().back() and query string forwarding.
|
|
*/
|
|
redirect: {
|
|
/**
|
|
* When enabled, all redirects automatically carry over the current
|
|
* request's query string parameters to the redirect destination.
|
|
* Use withQs(false) to opt out for a specific redirect.
|
|
*/
|
|
forwardQueryString: true,
|
|
},
|
|
|
|
/**
|
|
* Manage cookies configuration. The settings for the session id cookie are
|
|
* defined inside the "config/session.ts" file.
|
|
*/
|
|
cookie: {
|
|
/**
|
|
* Restrict the cookie to a specific domain.
|
|
* Keep empty to use the current host.
|
|
*/
|
|
domain: '',
|
|
|
|
/**
|
|
* Restrict the cookie to a URL path. '/' means all routes.
|
|
*/
|
|
path: '/',
|
|
|
|
/**
|
|
* Default lifetime for cookies managed by the HTTP layer.
|
|
*/
|
|
maxAge: '2h',
|
|
|
|
/**
|
|
* Prevent JavaScript access to the cookie in the browser.
|
|
*/
|
|
httpOnly: true,
|
|
|
|
/**
|
|
* Send cookies only over HTTPS in production.
|
|
*/
|
|
secure: app.inProduction,
|
|
|
|
/**
|
|
* Cross-site policy for cookie sending.
|
|
*/
|
|
sameSite: 'lax',
|
|
},
|
|
})
|