Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 3 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ This project is developed in Firebase Studio.
- [Tailwind CSS](https://tailwindcss.com/) (Utility-first CSS framework)
- [Lucide React](https://lucide.dev/) (Icons)
- **AI & Backend Logic**:
- [Genkit (by Google)](https://firebase.google.com/docs/genkit): For orchestrating AI flows and interacting with generative models.
- [Google AI (Gemini Models)](https://ai.google.dev/): Powering the AI analysis and suggestions.
- AI-powered features (game analysis, suggestions) are provided via Next.js API Routes.
- Analysis primarily utilizes the [Lichess API](https://lichess.org/api) for Stockfish cloud evaluation.
- Direct integration with generative models like Google's Gemini is planned for future enhancements.
- **Authentication & Backend Services**:
- [Firebase](https://firebase.google.com/)
- Firebase Authentication (Google, Lichess via Custom Auth, Anonymous)
Expand Down Expand Up @@ -83,14 +84,6 @@ Replace `your_...` with your actual credentials. You'll need to set up a Firebas
```
The application will be available at `http://localhost:9002` (or the port specified in `package.json`).

3. **Run the Genkit development server** (in a separate terminal):
```bash
npm run genkit:dev
# or for watching changes
npm run genkit:watch
```
This starts the Genkit development environment, typically on `http://localhost:4000`.

## 🔮 Planned Features & Next Steps
- **Full Lichess API Integration**: Fetch actual game history and user data.
- **Firebase Custom Token Flow for Lichess**: Complete the Lichess sign-in by implementing the Firebase Cloud Function for token exchange.
Expand Down
6 changes: 0 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,12 @@
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"genkit:dev": "genkit start -- tsx src/ai/dev.ts",
"genkit:watch": "genkit start -- tsx --watch src/ai/dev.ts",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@genkit-ai/googleai": "^1.8.0",
"@genkit-ai/next": "^1.8.0",
"@hookform/resolvers": "^4.1.3",
"@radix-ui/react-accordion": "^1.2.3",
"@radix-ui/react-alert-dialog": "^1.1.6",
Expand All @@ -40,7 +36,6 @@
"date-fns": "^3.6.0",
"dotenv": "^16.5.0",
"firebase": "^11.9.1",
"genkit": "^1.8.0",
"lucide-react": "^0.475.0",
"next": "15.3.3",
"patch-package": "^8.0.0",
Expand All @@ -57,7 +52,6 @@
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"genkit-cli": "^1.8.0",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
Expand Down
9 changes: 0 additions & 9 deletions src/ai/dev.ts

This file was deleted.

150 changes: 0 additions & 150 deletions src/ai/flows/deep-analyze-game-metrics.ts

This file was deleted.

94 changes: 0 additions & 94 deletions src/ai/flows/fetch-game-history.ts

This file was deleted.

Loading