{"id":18736929,"url":"https://github.com/ritwickrajmakhal/eventure","last_synced_at":"2025-04-12T19:32:05.048Z","repository":{"id":255912862,"uuid":"832887287","full_name":"ritwickrajmakhal/eventure","owner":"ritwickrajmakhal","description":"Event Management System","archived":false,"fork":false,"pushed_at":"2025-02-20T12:41:29.000Z","size":32457,"stargazers_count":5,"open_issues_count":6,"forks_count":6,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-26T14:01:41.947Z","etag":null,"topics":["ems","nextjs"],"latest_commit_sha":null,"homepage":"https://eventure-ten.vercel.app","language":"JavaScript","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/ritwickrajmakhal.png","metadata":{"files":{"readme":null,"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}},"created_at":"2024-07-23T23:46:24.000Z","updated_at":"2025-03-15T08:33:08.000Z","dependencies_parsed_at":"2025-02-20T11:41:27.050Z","dependency_job_id":null,"html_url":"https://github.com/ritwickrajmakhal/eventure","commit_stats":null,"previous_names":["ritwickrajmakhal/eventure"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ritwickrajmakhal%2Feventure","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ritwickrajmakhal%2Feventure/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ritwickrajmakhal%2Feventure/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ritwickrajmakhal%2Feventure/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ritwickrajmakhal","download_url":"https://codeload.github.com/ritwickrajmakhal/eventure/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248621217,"owners_count":21134777,"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","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":["ems","nextjs"],"created_at":"2024-11-07T15:23:03.366Z","updated_at":"2025-04-12T19:32:05.042Z","avatar_url":"https://github.com/ritwickrajmakhal.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \n# EVENTURE\n\n[![Eventure Website](https://img.shields.io/website?url=https://eventure-ten.vercel.app/)](https://eventure-ten.vercel.app/)\n\n\u003c/div\u003e\n\n## Table of Contents\n\n- [EVENTURE](#eventure)\n  - [Table of Contents](#table-of-contents)\n  - [Overview](#overview)\n  - [Features](#features)\n  - [Tech Stack](#tech-stack)\n  - [Installation](#installation)\n    - [Prerequisites](#prerequisites)\n    - [Step-by-step Guide](#step-by-step-guide)\n  - [Environment Variables](#environment-variables)\n  - [Usage](#usage)\n    - [Production Build](#production-build)\n  - [Current Contributors](#current-contributors)\n  - [Contributing ](#contributing-)\n  - [Questions?](#questions)\n\n## Overview\n\nEVENTURE simplifies event creation, registration, and management by offering an intuitive web interface with integration of multiple third-party services like GitHub, Google, and Azure Bot Service. It's designed to scale for both small and large events, allowing for easy event discovery and user interaction.\n\n## Features\n\n- **User Authentication:** Supports OAuth authentication with GitHub and Google.\n- **Event Management:** Organize, manage, and participate in events seamlessly.\n- **API Integration:** Fetch event data from Strapi API for dynamic updates.\n- **Chatbot Integration:** Integrated with Azure Bot Service for enhanced user support.\n- **Developer Friendly:** Easily customizable with clear documentation and environment configurations.\n\n## Tech Stack\n\n- **Frontend:** Next.js (React Framework)\n- **Backend:** Strapi CMS\n- **Deployment:** Vercel\n- **Bot Service:** Azure Bot Service\n- **Version Control:** GitHub\n- **APIs:** Google Gemini API\n\n## Installation\n\nTo get a local copy of this project up and running, follow these simple steps:\n\n### Prerequisites\n\n- [Node.js](https://nodejs.org/) (v14+)\n- [npm](https://www.npmjs.com/) (v6+)\n\n### Step-by-step Guide\n\n1. **Clone the repository**\n\n   ```bash\n   git clone https://github.com/ritwickrajmakhal/eventure.git\n   cd eventure\n   ```\n\n2. **Install the dependencies**\n\n   Ensure that all dependencies required for the project are installed by running the following command in the project directory:\n\n   ```bash\n   npm install\n   ```\n\n3. **Set up environment variables**\n\n   Create a `.env.local` file in the root directory of the project and add the following environment variables:\n\n   ```bash\n   NEXT_PUBLIC_CHATBOT_SECRET_KEY=your_chatbot_api_key_from_azure_bot_service\n   NEXT_PUBLIC_API_URL=http://localhost:1337\n   API_URL=http://localhost:1337\n   NEXT_PUBLIC_BACKEND_URL=http://localhost:1337\n   NEXT_PUBLIC_GEMINI_API_KEY=your_gemini_api_key\n   ```\n\n   - Replace `your_chatbot_api_key_from_azure_bot_service`, `your_gemini_api_key`, and other values with the appropriate credentials for your services.\n\n4. **Start the development server**\n\n   After setting up your environment variables, start the development server with the following command:\n\n   ```bash\n   npm run dev\n   ```\n\n   This command will run the project on `http://localhost:3000/`.\n\n## Environment Variables\n\n| Variable Name                  | Description                                                    |\n| ------------------------------ | -------------------------------------------------------------- |\n| NEXT_PUBLIC_CHATBOT_SECRET_KEY | API key for the Azure chatbot service                          |\n| NEXT_PUBLIC_API_URL            | URL for the Strapi API                                         |\n| API_URL                        | URL for the Strapi API                                         |\n| NEXT_PUBLIC_BACKEND_URL        | URL for the Strapi backend                                     |\n| NEXT_PUBLIC_GEMINI_API_KEY     | API key for the Google Gemini API                              |\n\nMake sure that your `.env.local` file is never pushed to version control, as it contains sensitive information.\n\n## Usage\n\nOnce you have the development server running, navigate to `http://localhost:3000/` to start using the application.\n\n### Production Build\n\nTo build and start the app in production mode, use the following commands:\n\n1. Build the application:\n\n   ```bash\n   npm run build\n   ```\n\n2. Start the application in production mode:\n   ```bash\n   npm run start\n   ```\n\n## Current Contributors\n\n\u003ca href=\"https://github.com/ritwickrajmakhal/eventure/graphs/contributors\"\u003e\n  \u003cimg src=\"https://contributors-img.web.app/image?repo=ritwickrajmakhal/eventure\" alt=\"Contributors Image\"/\u003e\n\u003c/a\u003e\n\nMade with [contributors-img](https://contributors-img.web.app).\n\n## Contributing \u003ca name=\"contributing\"\u003e\u003c/a\u003e\n\nWe welcome contributions from the community. To contribute:\n\n1. Fork the repository.\n2. Create a new branch (`git checkout -b feature/new-feature`).\n3. Make your changes and commit them (`git commit -m \"Added new feature\"`).\n4. Push to the branch (`git push origin feature/new-feature`).\n5. Open a Pull Request.\n\n## Questions?\n\nIf you have any questions or run into any issues, feel free to open an issue or reach out to the contributors!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fritwickrajmakhal%2Feventure","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fritwickrajmakhal%2Feventure","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fritwickrajmakhal%2Feventure/lists"}