Sistema de Gestión is a React-based web application that lets you manage a complete academic record system — students (alumnos), subjects (materias), and grade assignments (notas) — through a clean, tab-driven interface backed by a REST API.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/JuanSebax85/frontend-prueba-fullstack/llms.txt
Use this file to discover all available pages before exploring further.
Quickstart
Get the app running locally or with Docker in minutes
Docker Deployment
Build and serve the app with the multi-stage Nginx image
Student Management
Create, edit, and delete student records with full validation
Grade Recording
Assign numeric grades linking students to subjects
What you can do
Sistema de Gestión provides three fully integrated management modules accessible from a top navigation menu:Students
Manage student profiles including name, email, and date of birth
Subjects
Organize the academic subjects your students are enrolled in
Grades
Record and update numeric grades per student per subject
How it works
Start the backend API
The frontend connects to a REST API configured via the
REACT_APP_API_URL environment variable. Start your backend before running the frontend.Run the frontend
Use
npm start for local development or build a Docker image for production deployment with Nginx.You must have the backend API running before starting the frontend. See Backend Requirements for details.