{"id":22360567,"url":"https://github.com/eric-souzams/react-node-event-management","last_synced_at":"2026-04-02T02:50:04.103Z","repository":{"id":234743981,"uuid":"789439320","full_name":"eric-souzams/react-node-event-management","owner":"eric-souzams","description":"Front-end application in React and backend application in Node.js of the project for event management","archived":false,"fork":false,"pushed_at":"2024-04-20T15:21:17.000Z","size":86,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-26T14:32:39.612Z","etag":null,"topics":["dayjs","fastify","lucide-react","nodejs","prisma-orm","reactjs","tailwind","vitejs","zod"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eric-souzams.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2024-04-20T14:55:22.000Z","updated_at":"2024-04-20T15:24:24.000Z","dependencies_parsed_at":"2024-04-20T16:59:16.215Z","dependency_job_id":"d3a0cef1-4573-4a30-9bb0-a5fed5a2787d","html_url":"https://github.com/eric-souzams/react-node-event-management","commit_stats":null,"previous_names":["eric-souzams/react-node-event-management"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/eric-souzams/react-node-event-management","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eric-souzams%2Freact-node-event-management","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eric-souzams%2Freact-node-event-management/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eric-souzams%2Freact-node-event-management/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eric-souzams%2Freact-node-event-management/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eric-souzams","download_url":"https://codeload.github.com/eric-souzams/react-node-event-management/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eric-souzams%2Freact-node-event-management/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270637749,"owners_count":24620427,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-15T02:00:12.559Z","response_time":110,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dayjs","fastify","lucide-react","nodejs","prisma-orm","reactjs","tailwind","vitejs","zod"],"created_at":"2024-12-04T16:17:28.822Z","updated_at":"2025-12-30T20:06:35.640Z","avatar_url":"https://github.com/eric-souzams.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Event Management\n\nEvent management is an application for **managing participants in in-person events**.\n\nThe tool allows the organizer to register an event and open a public registration page.\n\n\n## Requirements\n\n### Functional requirements\n\n- [x] The organizer must be able to register a new event;\n- [x] The organizer must be able to view event data;\n- [x] The organizer must be able to view the list of participants;\n- [x] The participant must be able to register for an event;\n- [x] The participant must be able to view their registration badge;\n- [x] The participant must be able to check-in at the event;\n\n### Business rules\n\n- [x] The participant can only register for an event once;\n- [x] Participants can only register for events with available places;\n- [x] The participant can only check-in to an event once;\n\n\n## Database\n\nIn this application, a relational database (SQLite) was used.\n\n\n### Database structure (SQL)\n\n```sql\n-- CreateTable\nCREATE TABLE \"events\" (\n    \"id\" TEXT NOT NULL PRIMARY KEY,\n    \"title\" TEXT NOT NULL,\n    \"details\" TEXT,\n    \"slug\" TEXT NOT NULL,\n    \"maximum_attendees\" INTEGER\n);\n\n-- CreateTable\nCREATE TABLE \"attendees\" (\n    \"id\" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,\n    \"name\" TEXT NOT NULL,\n    \"email\" TEXT NOT NULL,\n    \"event_id\" TEXT NOT NULL,\n    \"created_at\" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,\n    CONSTRAINT \"attendees_event_id_fkey\" FOREIGN KEY (\"event_id\") REFERENCES \"events\" (\"id\") ON DELETE RESTRICT ON UPDATE CASCADE\n);\n\n-- CreateTable\nCREATE TABLE \"check_ins\" (\n    \"id\" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,\n    \"created_at\" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,\n    \"attendeeId\" INTEGER NOT NULL,\n    CONSTRAINT \"check_ins_attendeeId_fkey\" FOREIGN KEY (\"attendeeId\") REFERENCES \"attendees\" (\"id\") ON DELETE RESTRICT ON UPDATE CASCADE\n);\n\n-- CreateIndex\nCREATE UNIQUE INDEX \"events_slug_key\" ON \"events\"(\"slug\");\n\n-- CreateIndex\nCREATE UNIQUE INDEX \"attendees_event_id_email_key\" ON \"attendees\"(\"event_id\", \"email\");\n\n-- CreateIndex\nCREATE UNIQUE INDEX \"check_ins_attendeeId_key\" ON \"check_ins\"(\"attendeeId\");\n```\n## Running\n\nAfter cloning the UI repository, access the project folder and run the commands below:\n\n```sh\nnpm install\nnpm run dev\n```\n\nVisit http://localhost:5173 to view the application.\n\n\nAfter cloning the API repository, access the project folder and execute the commands below:\n\n```sh\nnpm install\nnpm run db:migrate\nnpm run dev\n```\n\nVisit http://localhost:3333 to view the api.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feric-souzams%2Freact-node-event-management","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feric-souzams%2Freact-node-event-management","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feric-souzams%2Freact-node-event-management/lists"}