{"id":23085265,"url":"https://github.com/rahuletto/evenzo-api","last_synced_at":"2026-02-15T06:31:44.446Z","repository":{"id":264520843,"uuid":"864612541","full_name":"Rahuletto/evenzo-api","owner":"Rahuletto","description":"An event management API made with Hono 🔥 with Cloudflare workers, using Cloudflare D1.","archived":false,"fork":false,"pushed_at":"2024-12-09T10:33:35.000Z","size":54,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-28T09:58:50.592Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Rahuletto.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2024-09-28T17:23:48.000Z","updated_at":"2024-12-23T19:24:45.000Z","dependencies_parsed_at":"2024-11-24T20:44:37.628Z","dependency_job_id":"175e036a-4840-4184-904f-6c1813eefb4c","html_url":"https://github.com/Rahuletto/evenzo-api","commit_stats":null,"previous_names":["rahuletto/evenzo","rahuletto/evenzo-api"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Rahuletto/evenzo-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rahuletto%2Fevenzo-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rahuletto%2Fevenzo-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rahuletto%2Fevenzo-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rahuletto%2Fevenzo-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Rahuletto","download_url":"https://codeload.github.com/Rahuletto/evenzo-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rahuletto%2Fevenzo-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29471941,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T05:26:30.465Z","status":"ssl_error","status_checked_at":"2026-02-15T05:26:21.858Z","response_time":118,"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":[],"created_at":"2024-12-16T17:51:51.895Z","updated_at":"2026-02-15T06:31:44.416Z","avatar_url":"https://github.com/Rahuletto.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Evenzo\n\nAn event management API made with [Hono](https://hono.dev/) 🔥 with [Cloudflare workers](https://www.cloudflare.com/developer-platform/workers/), using [Cloudflare D1](https://www.cloudflare.com/developer-platform/d1/). Hono is fast, scalable and works on the edge networks making it zippy.\n\n\u003e Made for SRMKZILLA club submission\n\n## Tech Stack\n\n- **Backend**: Built with Cloudflare Workers.\n- **Database**: Utilizes D1 for data management.\n- **API Documentation**: Self-documented with OpenAPI and Swagger. `/docs`\n\n## Installation and Setup\n\n\u003e [!TIP]\n\u003e If you are not interested in running with the source, you can test it out with the [deployed url](https://evenzo.rameshrahul1974.workers.dev) \u003e `https://evenzo.rameshrahul1974.workers.dev`\n\n### Prerequisites\n\n- [Cloudflare Wrangler CLI](https://developers.cloudflare.com/workers/wrangler/)\n\n### Setup\n\n1. Clone the repository:\n\n```bash\ngit clone https://github.com/rahuletto/evenzo.git\ncd evenzo\n```\n\n2. Install Wrangler CLI:\n\n```bash\nbun add -g wrangler\n```\n\n3. Log in to Cloudflare:\n\n```bash\nwrangler login\n```\n\n4. Create a Cloudflare D1 database\n\n```bash\nwrangler d1 create events_db\n```\n\nHave it's id, it is necessary.\n\n5. Configure the database in wrangler.toml:\n\n\u003e Change `example.wrangler.toml` to `wrangler.toml`\n\u003e You should use the ID generated by wrangler\n\n```yaml\nname = \"evenzo\"\ncompatibility_date = \"2024-09-28\"\n\n[[ d1_databases ]]\nbinding = \"DB\"\ndatabase_name = \"events_db\"\ndatabase_id = \"ID\"\n```\n\n### Running the app\n\n1. Install all dependencies\n\n```bash\nbun install\n```\n\n2. Run the dev server\n\n```bash\nbun run dev\n```\n\nThis starts a server at `localhost:8787` (most probably)\n\n3. Deploy the api\n   To deploy it in your cloudflare workers\n\n```bash\nbun run deploy\n```\n\n## API Endpoints\n\n`GET /events`\nRetrieve all events.\n\n`POST /events`\nCreate a new event. Requires a JSON body:\n\n```json\n{\n  \"title\": \"Event Title\",\n  \"description\": \"Event Description\",\n  \"location\": \"Event Location\",\n  \"time\": \"2024-10-01T10:00:00Z\"\n}\n```\n\n`GET /events/{id}`\nRetrieve an event by its ID.\n\n`PUT /events/{id}`\nUpdate an existing event by its ID. Requires a JSON body with updated details.\n\n`DELETE /events/{id}`\nDelete an event by its ID.\n\n## [Documentation](https://evenzo.rameshrahul1974.workers.dev/docs)\n\nThe API is documented using OpenAPI. Access the Swagger UI for exploration:\n\n- Swagger UI: `/docs`\n- OpenAPI Spec: `/swagger.json`\n\n## License\n\nThis project is licensed under the MPL 2.0 License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frahuletto%2Fevenzo-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frahuletto%2Fevenzo-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frahuletto%2Fevenzo-api/lists"}