| Category | Technology | Notes |
|---|---|---|
| Framework | Next.js (App Router) | TypeScript, React Server Components |
| Language | TypeScript | strict mode |
| Styling | Tailwind CSS | utility-first |
| UI Components | shadcn/ui | Radix UI + Tailwind ベース |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ============================================ | |
| # Environment Variables Template | |
| # .env.local にコピーして値を設定してください | |
| # cp .env.example .env.local | |
| # ============================================ | |
| # --- App --- | |
| NEXT_PUBLIC_APP_URL=http://localhost:3000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Required | |
| ANTHROPIC_API_KEY=sk-ant-... | |
| PORT=3100 | |
| # Optional: Multi-provider | |
| # OPENAI_API_KEY=sk-... | |
| # GOOGLE_API_KEY=... | |
| # Optional: Slack integration | |
| # SLACK_SIGNING_SECRET= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ============================================ | |
| # Environment Variables Template | |
| # .env.local にコピーして値を設定してください | |
| # cp .env.example .env.local | |
| # ============================================ | |
| # --- Supabase --- | |
| # Dashboard: https://supabase.com/dashboard → Project Settings → API | |
| NEXT_PUBLIC_SUPABASE_URL= | |
| NEXT_PUBLIC_SUPABASE_ANON_KEY= |