This project is a template with some basic functionality for the ASW labs.
El proyecto está desplegado en: aqui
- UO302313 - David Fernando Bolaños Lopez
- UO294946 - Raúl Velasco Vizán
- UO301919 - Ángela Nistal Guerrero
- UO300731 - Olai Navarro Baizán
- UO301831 - Alejandro Requena Roncero
The project is divided into three main components, each in its own directory:
webapp/: A frontend application built with React, Vite, and TypeScript.users/: A backend service for managing users and profile/statistics data, built with Node.js and Express.auth/: A backend authentication service (Node.js + Express + TypeScript) for register/login/refresh and internal JWT verification.gamey/: A Rust game engine and bot service.docs/: Architecture documentation sources following Arc42 template
Each component has its own package.json file with the necessary scripts to run and test the application.
- User Registration: The web application provides a simple form to register new users.
- User Service: The user service receives the registration request, simulates some processing, and returns a welcome message.
- GameY: A basic Game engine which only chooses a random piece.
The webapp is a single-page application (SPA) created with Vite and React.
src/App.tsx: The main component of the application.src/RegisterForm.tsx: The component that renders the user registration form.package.json: Contains scripts to run, build, and test the webapp.vite.config.ts: Configuration file for Vite.Dockerfile: Defines the Docker image for the webapp.
The users service is a simple REST API built with Node.js and Express.
users-service.js: The main file for the user service. It defines an endpoint/createuserto handle user creation.package.json: Contains scripts to start the service.Dockerfile: Defines the Docker image for the user service.
The auth service is the authentication backend built with Node.js, Express and TypeScript.
src/index.ts: Entry point and route mounting under/api/auth.src/routes/auth.routes.ts: Auth endpoints (register,login,refresh,verify).openapi.yaml: OpenAPI 3.x contract for Auth endpoints.package.json: Contains scripts for run/test/coverage.
Auth endpoints:
POST /api/auth/registerPOST /api/auth/loginPOST /api/auth/refreshPOST /api/auth/verify(internal only; blocked externally in Nginx)
Important env vars:
JWT_SECRET(required)AUTH_DB_PATH(defaults to/app/auth/data/auth.dbin compose)
Internal verification URL for service-to-service calls:
AUTH_INTERNAL_VERIFY_URL=http://auth:3001/api/auth/verify(recommended timeout: 500ms–1s)
The gamey component is a Rust-based game engine with bot support, built with Rust and Cargo.
src/main.rs: Entry point for the application.src/lib.rs: Library exports for the gamey engine.src/bot/: Bot implementation and registry.src/core/: Core game logic including actions, coordinates, game state, and player management.src/notation/: Game notation support (YEN, YGN).src/web/: Web interface components.Cargo.toml: Project manifest with dependencies and metadata.Dockerfile: Defines the Docker image for the gamey service.
You can run this project using Docker (recommended) or locally without Docker.
This is the easiest way to get the project running. You need to have Docker and Docker Compose installed.
- Build and run the containers: From the root directory of the project, run:
docker-compose up --buildThis command will build the Docker images for both the webapp and users services and start them.
2.Access the application:
- Web application: http://localhost
- User service API: http://localhost:3000
- Gamey API: http://localhost:4000
To run the project locally without Docker, you will need to run each component in a separate terminal.
- Node.js and npm installed.
Navigate to the users directory:
cd usersInstall dependencies:
npm installRun the service:
npm startThe user service will be available at http://localhost:3000.
Navigate to the webapp directory:
cd webappInstall dependencies:
npm installRun the application:
npm run devThe web application will be available at http://localhost:5173.
Navigate to the auth directory:
cd authInstall dependencies:
npm installRun the service:
npm run startRun tests and coverage:
npm test
npm run test:coverageVerify auth.db exists (from monorepo root, when running with compose volume ./data:/app/data):
test -f ./data/auth.db && echo "auth.db exists"At this moment the GameY application is not needed but once it is needed you should also start it from the command line.
Each component has its own set of scripts defined in its package.json. Here are some of the most important ones:
npm run dev: Starts the development server for the webapp.npm test: Runs the unit tests.npm run test:e2e: Runs the end-to-end tests.npm run start:all: A convenience script to start both thewebappand theusersservice concurrently.
npm start: Starts the user service.npm test: Runs the tests for the service.
npm run start: Starts the auth service.npm test: Runs auth service tests.npm run test:coverage: Runs auth tests with coverage.npm run db:init: Initializes the auth database schema.
cargo build: Builds the gamey application.cargo test: Runs the unit tests.cargo run: Runs the gamey application.cargo doc: Generates documentation for the GameY engine application
Before running the project (especially with Docker), you must create a .env file in the root directory. This file is not committed to the repository for security reasons.
Create a file named .env and add the following variables:
# Secret key used to sign JWT tokens for authentication
JWT_SECRET=yovi_es1c_2526
# Internal path where the services will look for the database files inside the containers
DB_PATH=/app/data/