{"id":25049259,"url":"https://github.com/gastonduault/api-event-manager","last_synced_at":"2026-02-14T12:03:03.490Z","repository":{"id":275968084,"uuid":"927740639","full_name":"gastonduault/api-event-manager","owner":"gastonduault","description":"Event Manager API is a backend in clean architecture built with Node.js, Express, and TypeScript. The API allows users to manage events.","archived":false,"fork":false,"pushed_at":"2025-03-23T20:14:22.000Z","size":337,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-03T00:30:56.005Z","etag":null,"topics":["clean-architecture","docker","expressjs","joi-validation","jwt","jwttoken","prisma"],"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/gastonduault.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,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-02-05T13:19:48.000Z","updated_at":"2025-03-24T20:50:36.000Z","dependencies_parsed_at":"2025-03-12T16:28:41.207Z","dependency_job_id":"cb518773-08e4-40ff-b184-d4ae17ccfec0","html_url":"https://github.com/gastonduault/api-event-manager","commit_stats":null,"previous_names":["gastonduault/api-event-manager"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gastonduault/api-event-manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gastonduault%2Fapi-event-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gastonduault%2Fapi-event-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gastonduault%2Fapi-event-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gastonduault%2Fapi-event-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gastonduault","download_url":"https://codeload.github.com/gastonduault/api-event-manager/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gastonduault%2Fapi-event-manager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29443468,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T10:51:12.367Z","status":"ssl_error","status_checked_at":"2026-02-14T10:50:52.088Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["clean-architecture","docker","expressjs","joi-validation","jwt","jwttoken","prisma"],"created_at":"2025-02-06T08:17:17.694Z","updated_at":"2026-02-14T12:03:03.466Z","avatar_url":"https://github.com/gastonduault.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# API Event Manager\n\n## 📌 Project Description\n\nEvent Manager API is a backend application built with Node.js, Express, and TypeScript. The API allows users to manage events, such as role-playing game competitions, by providing functionalities for creating, updating, deleting, and retrieving events and participants.\n\n## 🚀 Technologies Used\n\n- **Node.js** - Runtime environment\n- **Express.js** - Web framework\n- **TypeScript** - Typed JavaScript\n- **ESLint \u0026 Prettier** - Code linting and formatting\n- **Husky \u0026 Lint-Staged** - Pre-commit hooks\n\n## 📂 Project Structure\n\n```\n📦 api-event-manager\n├── 📁 postman           # Postman test files\n│   ├── 📄 tests.events.json\n│   ├── 📄 tests.users.json\n├── 📁 prisma            # Prisma ORM configuration\n│   ├── 📁 migrations    # Database migrations folder\n│   ├── 📄 schema.prisma # Prisma schema definition\n├── 📁 src               # Main source code\n│   ├── 📁 controllers   # Business logic for endpoints\n│   ├── 📁 entities      # Entity/model definitions\n│   ├── 📁 middlewares   # Express middleware\n│   ├── 📁 repositories  # Database access management\n│   ├── 📁 routes        # API route definitions\n│   ├── 📁 schemas       # Data validation\n│   ├── 📁 services      # Business services\n│   ├── 📄 app.ts        # Express application initialization\n│   ├── 📄 prismaClient.ts # Prisma client for DB connection\n│   ├── 📄 swaggerConfig.ts # Swagger configuration for API documentation\n├── 📄 .env-example      # Example environment file\n├── 📄 package.json      # Project dependencies\n└── 📄 tsconfig.json     # TypeScript configuration\n```\n\n## 🛠 Installation\n\nIn first, environments variables\n\n```sh\ncp .env-example .env\n```\n\n### With NPM and Docker\n\nRun the postgres service\n\n```sh\ndocker compose up -d --build db\n```\n\nInstall the dependencies\n\n```sh\nnpm install\n```\n\nConnect and setup the prisma ORM with the bdd\n\n```sh\nnpm run setup_prisma\n```\n\nRun the Express API\n\n```sh\nnpm run start\n```\n\n### CMD Docker\n\nRun the project ONLY with docker\n\n```sh\ndocker compose up --build -d\n```\n\nConnect to the Express service\n\n```sh\ndocker compose exec -it api sh\n```\n\nConnect to the Postgresql service\n\n```sh\ndocker compose exec db psql -U postgres -d event_manager\n```\n\n## 🔥 API Documentation\n\nYou can access to the swagger of the API with this link:\n[http://localhost:3000/docs/](http://localhost:3000/docs/)\n\n\u003e The API need to be started\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgastonduault%2Fapi-event-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgastonduault%2Fapi-event-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgastonduault%2Fapi-event-manager/lists"}