917b90a26d917cfe30c677bb2f05677f2ab4b86b
AdAstra_App
Libraries and Frameworks
| Name | |
|---|---|
| TypeScript | v5.5.x |
| Next.js | v15.x |
| React | v18.x |
| Conform | form validation library |
| Zod | schema validation library |
| unified | markdown to html converter |
| OpenAPI TypeScript | type generator from OpenAPI schema |
Getting Started
# 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
.
├── 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
Description