Web client for monsters
  • TypeScript 78.9%
  • JavaScript 13.7%
  • HTML 6.8%
  • Dockerfile 0.3%
  • Makefile 0.3%
Find a file
Jakub b989f0efab
Some checks failed
Test / install (push) Has been cancelled
Test / lint (push) Has been cancelled
Test / build (push) Has been cancelled
Test / audit (push) Has been cancelled
Merge pull request 'Feat: Added gitea' (#191) from feat/redesign into dev
Reviewed-on: http://git.kiszczyc.pl/Monsters/WebClient/pulls/191
2025-09-29 16:15:29 +00:00
.gitea Feat: Added gitea 2025-09-29 16:41:07 +02:00
k8s Feat: Added docker 2024-03-17 17:32:45 +01:00
src Feat: Added gitea 2025-09-29 16:41:07 +02:00
.dockerignore Feat: Added docker config 2025-05-29 22:34:25 +02:00
.editorconfig Feat: Rewriting application into styled components 2025-03-31 21:06:50 +02:00
.gitignore Feat: Rewriting application into styled components 2025-03-31 21:06:50 +02:00
.prettierrc Feat: Rewriting application into styled components 2025-03-31 21:06:50 +02:00
Dockerfile Feat: Added docker config 2025-05-29 22:34:25 +02:00
eslint.config.mjs Feat: Redesigned unauthorized ui 2025-09-28 18:21:16 +02:00
index.html Feat: Added users page 2025-04-05 12:20:03 +02:00
LICENSE Feat: Rewriting application into styled components 2025-03-31 21:06:50 +02:00
makefile Feat: Added docker config 2025-05-29 22:34:25 +02:00
package-lock.json Feat: Redesigned unauthorized ui 2025-09-28 18:21:16 +02:00
package.json Feat: Rewriting application into styled components 2025-03-31 21:06:50 +02:00
README.md Feat: Added gitea 2025-09-29 16:41:07 +02:00
tsconfig.json Feat: Rewriting application into styled components 2025-03-31 21:06:50 +02:00
vite.config.ts Feat: Redesigned unauthorized ui 2025-09-28 18:21:16 +02:00

React client for monsters game

This is a admin tool for managing the game and testing it. This is not a full fat client

In order to run it, you need to :

  • Install dependencies
npm install / yarn

And fill .env file with data:

VITE_API_BACKEND=http://localhost:5003
VITE_WS_BACKEND=ws://localhost:5004
VITE_API_BACKEND_LOGIN_CLIENT=login
VITE_API_BACKEND_REGISTER_CLIENT=register
VITE_API_BACKEND_LOGOUT_CLIENT=logout
VITE_API_HOME=http://localhost:3003

VITE_API_BACKEND=Backend address

VITE_WS_BACKEND=Backend websocket address with ws prefix

VITE_API_BACKEND_LOGIN_CLIENT=Client, which should be used to log in

VITE_API_BACKEND_REGISTER_CLIENT=Client, which should be used to register

VITE_API_BACKEND_LOGOUT_CLIENT=Client, which should be used to logout

VITE_API_HOME=Address of this application