Suppression de fichiers

This commit is contained in:
Rampeur
2025-08-11 22:57:30 +02:00
parent 7cd8364b07
commit 7dcb426ef5
-42
View File
@@ -1,42 +0,0 @@
# AdAstra_App
## Libraries and Frameworks
| Name | |
| --------------------------------------------- | ---------------------------------- |
| [TypeScript](https://www.typescriptlang.org/) | v5.5.x |
| [Next.js](https://nextjs.org/) | v15.x |
| [React](https://react.dev/) | v18.x |
| [Conform](https://conform.guide/) | form validation library |
| [Zod](https://zod.dev/) | schema validation library |
| [unified](https://unifiedjs.com/) | markdown to html converter |
| [OpenAPI TypeScript](https://openapi-ts.dev/) | type generator from OpenAPI schema |
## Getting Started
```bash
# copy env
cp .env.example .env.local
# set API_BASE_URL variable in .env.local to your backend api endpoint
# run app
npm run dev
```
## Directory structure
```plaintext
.
├── api/ # api schema
├── public/ # static assets
└── src/
├── app/ # web routes
├── config/ # global configuration and constants
├── generated/ # automatically generated codes
├── modules/
│ ├── common/ # common (feature-independent) components
│ └── features/ # feature-specific components
├── styles/ # global style sheets
└── utils/ # utilities
```