arche

Getting Started

How to start using arche

Getting Started

Install Dependencies

pnpm install

Start Development

# Start both frontend and backend
pnpm run dev

# Start separately
cd pkg/be && pnpm run dev   # Backend :8765
cd pkg/fe && pnpm run dev   # Frontend :5173

Project Structure

arche/
├── pkg/
│   ├── be/    # Backend (Hono + Cloudflare Workers)
│   └── fe/    # Frontend (React + TanStack Start)
└── ...

On this page