Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/janareddyc7/chess_app
images in readme features working play game play computer skill check update rating in db , working on profile , tournaments and puzzles and friedns
https://github.com/janareddyc7/chess_app
ai chess chess-ai chess-bot chess-database chess-engine chess-game prisma typescript
Last synced: about 1 month ago
JSON representation
images in readme features working play game play computer skill check update rating in db , working on profile , tournaments and puzzles and friedns
- Host: GitHub
- URL: https://github.com/janareddyc7/chess_app
- Owner: janareddyc7
- Created: 2024-06-02T15:19:03.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-05T20:53:02.000Z (7 months ago)
- Last Synced: 2024-06-06T17:57:37.894Z (7 months ago)
- Topics: ai, chess, chess-ai, chess-bot, chess-database, chess-engine, chess-game, prisma, typescript
- Language: TypeScript
- Homepage:
- Size: 2.47 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Chess
Building a platform where people can
1. Sign up
2. Create a new match/get connected to an existing match
3. During the match, let users play moves
4. Have a rating system that goes up and down similar to standard chess rating## Tech stack
Let's keep it simple
1. React for Frontend
2. Node.js for Backend
3. Typescript as the language
4. Separate Websocket servers for handling real time games
5. Redis for storing all moves of a game in a queue## Setting it up locally
- Clone the repo
- Copy over .env.example over to .env everywhere
- Update .env
- Postgres DB Credentials
- Github/Google Auth credentials
- npm install
- Start ws server
- cd apps/ws
- npm run dev
- Start Backend
- cd apps/backend
- npm run dev
- Start frontend
- cd apps/frontend
- npm run dev