Evalua Javiera ships with a ready-to-useDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/groupTwoisTheBest/evaJav/llms.txt
Use this file to discover all available pages before exploring further.
vercel.json that lets you push the entire FastAPI application to Vercel with a single command. Vercel’s @vercel/python runtime handles the ASGI server layer for you, so there is no need to configure uvicorn manually — you get a globally distributed, HTTPS-enabled URL the moment the build completes.
vercel.json Configuration
The vercel.json at the repository root tells Vercel exactly how to build and route the application:
| Field | Purpose |
|---|---|
builds | Instructs Vercel to compile main.py using the @vercel/python runtime, which packages the FastAPI app and its dependencies into a serverless function. |
routes | A catch-all rule (/(.*)) that forwards every incoming HTTP request — regardless of path — to the FastAPI app defined in main.py, letting FastAPI’s own router decide how to respond. |
Deploy Steps
Install the Vercel CLI
The Vercel CLI is distributed as an npm package. Install it globally so the
vercel command is available anywhere on your system:Log in to your Vercel account
Authenticate the CLI with your Vercel account. This opens a browser window to complete the OAuth flow:
Deploy from the project root
From inside the The CLI will prompt you to link the project to a Vercel team/account on the first run. Accept the defaults or configure the project name as needed.
evaJav/ directory, run:The production deployment of Evalua Javiera is live at https://evajav.vercel.app. After your first deploy, subsequent production releases can be pushed with:
