Registration for Carnero.Dev is handled entirely through the event website. When you click the registration button, a modal form appears where your team’s representative submits the required details. That data is sent to a secure backend API, stored in the event’s database, and triggers an automatic confirmation email to the representative’s address — so keep an eye on your inbox as soon as you submit.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/moradoadrian/carneroDev/llms.txt
Use this file to discover all available pages before exploring further.
Registration Requirements
Before you open the form, make sure you have the following ready:- A team name that will identify your group throughout the event
- The full name of the team representative (the primary contact)
- A valid email address for the representative — confirmations and event updates will be sent here
- Your team size: anywhere from 1 to 4 members (inclusive)
- Agreement to the event’s official rules and code of conduct
Registration Process
Visit the Carnero.Dev event site
Navigate to carnero-dev.tech in your browser. The site is optimised for both desktop and mobile.
Click "Registrarse Ahora" in the hero section
Find the Registrarse Ahora (Register Now) call-to-action button in the main hero area of the homepage. Clicking it opens the registration modal overlay.
Fill out the registration form
Complete all four required fields: Team Name, Representative Name, Email, and Member Count (select 1, 2, 3, or 4 members). The participation category — <Carnero.Dev/> — Build The Future — is pre-filled and cannot be changed.
Accept the event rules and code of conduct
Check the terms checkbox to confirm that your team accepts the event bases, the code of conduct, and the commitment to deliver 100% original code.
Registration Form Fields
The following fields are submitted as a JSON payload to the/api/register endpoint via a POST request.
The name that will represent your team throughout the hackathon. This is a free-text field — choose something memorable.Example:
RoqueHackersFull name of the designated team representative. This person is the primary point of contact for organiser communications.Example:
Adrián MoradoA valid email address for the representative. The confirmation email and all pre-event communications will be sent to this address. Server-side validation enforces proper email formatting.Example:
rep@roque.tecnm.mxTotal number of team members, including the representative/leader. Submitted as a string from the radio button selection. Must resolve to an integer between 1 and 4 (inclusive). Values outside this range are rejected by the server.Allowed values:
"1", "2", "3", "4"What Happens After Registration
Once your form is submitted successfully, the API performs two actions:- Database record — your registration data (team name, representative name, email, and member count) is stored in the Carnero.Dev Supabase database.
- Confirmation email — an automated email is sent from
registro@carnero-dev.techto the representative’s inbox. The email contains your full registration summary: team name, representative, email, member count, and participation category.
Solo registration is fully allowed. You do not need to form a team before registering — a
membersCount of "1" is a valid option and is supported by both the form and the server-side validation.