{"id":23893810,"url":"https://github.com/tanjib-rafi/local-event-planner","last_synced_at":"2026-06-11T23:30:58.434Z","repository":{"id":233281047,"uuid":"786425525","full_name":"Tanjib-Rafi/Local-Event-Planner","owner":"Tanjib-Rafi","description":null,"archived":false,"fork":false,"pushed_at":"2024-04-17T15:47:28.000Z","size":278,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-23T06:15:52.225Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://local-event-planner.onrender.com/","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/Tanjib-Rafi.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}},"created_at":"2024-04-14T12:31:34.000Z","updated_at":"2024-04-17T15:50:09.000Z","dependencies_parsed_at":"2024-04-17T15:52:38.545Z","dependency_job_id":null,"html_url":"https://github.com/Tanjib-Rafi/Local-Event-Planner","commit_stats":null,"previous_names":["tanjib-rafi/local-event-planner"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Tanjib-Rafi/Local-Event-Planner","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tanjib-Rafi%2FLocal-Event-Planner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tanjib-Rafi%2FLocal-Event-Planner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tanjib-Rafi%2FLocal-Event-Planner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tanjib-Rafi%2FLocal-Event-Planner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Tanjib-Rafi","download_url":"https://codeload.github.com/Tanjib-Rafi/Local-Event-Planner/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tanjib-Rafi%2FLocal-Event-Planner/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34222709,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"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":[],"created_at":"2025-01-04T14:40:16.969Z","updated_at":"2026-06-11T23:30:58.392Z","avatar_url":"https://github.com/Tanjib-Rafi.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Key Features\r\n\r\n- **Token-based Authentication**: Utilizes JWT (JSON Web Tokens) for secure authentication, with user tokens stored locally in the browser's localStorage\r\n\r\n- **Restricted Access**: Only authenticated users are permitted to create events and view the Dahsboard\r\n\r\n- **Validate Date**: User cannot choose past date/time from the calender to create event\r\n\r\n- **Redux State Management**: Implements Redux for efficient state management\r\n\r\n- **Search/Filter**: Supports search/filter based on event name, location and time range \r\n\r\n- **Django REST Framework Backend**: Django REST Framework on the backend to provide API endpoints\r\n\r\n- **Satellite and Normal Map Views**: Offers users the option to view event locations in both satellite and normal map views with fullscreen view\r\n\r\n- **Nearby Events**: Show nearby events\r\n\r\n\r\n## Front-End Setup instructions (React Js)\r\n\r\nFirst, clone the repository to your local machine:\r\n\r\n```bash\r\ngit clone https://github.com/Tanjib-Rafi/Local-Event-Planner\r\n```\r\n\r\nChange Directory:\r\n\r\n```bash\r\ncd Local-Event-Planner/\r\n```\r\n\r\nInstall dependencies::\r\n\r\n```bash\r\nnpm i\r\n```\r\n\r\nFinally, run the development server:\r\n\r\n```bash\r\nnpm run start\r\n```\r\n\r\nNote:\r\n\r\nFor Location Autocomplete Suggestion I used LocationIq api:\r\n```bash\r\nhttps://us1.locationiq.com/v1/autocomplete.php?key=${apiKey}\u0026q=${searchQuery}\u0026limit=5\u0026format=json\r\n```\r\nReplace apiKey with your actual API key.\r\n\r\n\r\n\r\n## Back-End Setup instructions (Django Rest Framework)\r\n\r\nChange Directory\r\n\r\n```bash\r\ncd local_event_planner/\r\n```\r\n\r\nInstall the requirements:\r\n\r\n```bash\r\npip install -r requirements.txt\r\n```\r\n\r\nApply the migrations:\r\n\r\n```bash\r\npython3 manage.py migrate\r\n```\r\n\r\nFinally, run the development server:\r\n\r\n```bash\r\npython manage.py runserver 8001\r\n```\r\n\r\n## Database Setup\r\n\r\nIn the settings.py make sure database setup for Postgresql is correct:\r\n\r\n```\r\nDATABASES = {\r\n    'default': {\r\n        'ENGINE': 'django.db.backends.postgresql',\r\n        'NAME': 'local_event_planner',\r\n        'USER': 'postgres',\r\n        'PASSWORD': 'postgres',\r\n        'HOST': 'localhost',\r\n        'PORT': '5432',\r\n    }\r\n}\r\n\r\n```\r\n\r\n## Screenshots\r\n\r\n![Home](https://github.com/Tanjib-Rafi/Local-Event-Planner/assets/68615390/07165304-198e-4197-8815-82cf0f3e94e5)\r\n\r\n![localhost_3000_event_1](https://github.com/Tanjib-Rafi/Local-Event-Planner/assets/68615390/b1722aa1-fac1-41e7-8b47-946f92f5c148)\r\n\r\n![autosuggest](https://github.com/Tanjib-Rafi/Local-Event-Planner/assets/68615390/813bb850-64f8-4b46-bdd5-579891ab80ff)\r\n\r\n![satellite](https://github.com/Tanjib-Rafi/Local-Event-Planner/assets/68615390/6811f530-ee73-48b3-ac77-dc9dc8492829)\r\n\r\n![full](https://github.com/Tanjib-Rafi/Local-Event-Planner/assets/68615390/78f9f76c-e01c-4f4e-8bc2-565224f6a2a8)\r\n\r\n![signup](https://github.com/Tanjib-Rafi/Local-Event-Planner/assets/68615390/f7f6f33b-7a77-4001-88d1-c3d708d7ad07)\r\n\r\n![login](https://github.com/Tanjib-Rafi/Local-Event-Planner/assets/68615390/10704527-b25c-4162-b7fa-e6211710604d)\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftanjib-rafi%2Flocal-event-planner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftanjib-rafi%2Flocal-event-planner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftanjib-rafi%2Flocal-event-planner/lists"}