Recording.2024-09-14.233326.mp4
- Language:
- Build Tools:
- Database:
- Framework:
- Create database with name
tic-tac-toe
then make sure it works on port 5432
- Set the PostgreSQL user name in
spring.r2dbc.username
and the password inspring.r2dbc.password
in application.properties in the resource folder
./gradlew bootRun
docker build -t tic-tac-toe . & docker-compose up
./gradlew build
- Language:
- TypeScript
- Build Tools:
- Vite
- Framework:
- React
yarn install
Make sure to change the URL in frontend\src\game\gameViewModel.ts
const WS = "ws://{your_device_ip}:8080/ws";
Then Run:
yarn dev --host
yarn build