Skip to content

eyas-ranjous/fullstack-starter

Repository files navigation

fullstack-starter

Minimal fullstack TypeScript monorepo.

Structure

fullstack-starter
├── apps
│   ├── api
│   │   ├── src
│   │   │   ├── routes
│   │   │   │   └── health.ts
│   │   ├── server.ts
│   │
│   └── web
│       ├── src
│       │   ├── api.ts
│       │   ├── useHealth.ts
│       │   ├── main.tsx
│       │   └── App.tsx
│       │   └── index.css
│       ├── index.html
│
├── packages
│   └── shared
│       ├── src
│       │   ├── contracts
│       │   │   └── health.ts
│       ├── index.ts
│
├── skills
│   ├── create-api-endpoint
│   │   └── SKILLS.md
│   └── create-react-feature
│       └── SKILLS.md
│
├── AGENTS.md
├── README.md

Setup

Install dependencies:

pnpm install

Run development servers:

pnpm dev

Run individually:

pnpm dev:api
pnpm dev:web

Local Development

API runs at:

http://localhost:3000

Web runs at:

http://localhost:5173

About

Fullstack Typescript starter for building apps with AI agents

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages