This is a Next.js project bootstrapped with create-next-app
.
First, you'll need to set up the chess engine server:
# Clone the chess engine repository
git clone https://github.com/kevoconnell/chess-engine-llm
cd chess-engine-llm
# Install dependencies and start the server
# Follow the setup instructions in the chess-engine-llm repository
Create a .env.local
file in the root of this project and add:
NEXT_PUBLIC_SERVER_URL=your_chess_engine_server_url
Replace your_chess_engine_server_url
with the URL where your chess engine server is running (e.g., http://localhost:4000
).
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Open http://localhost:3000 with your browser to see the result.