{"id":25013869,"url":"https://github.com/code4recovery/online-meeting-list","last_synced_at":"2025-04-12T22:06:32.967Z","repository":{"id":41614435,"uuid":"241528005","full_name":"code4recovery/online-meeting-list","owner":"code4recovery","description":"Timezone-agnostic meeting finder for online-only meetings","archived":false,"fork":false,"pushed_at":"2025-04-02T01:25:33.000Z","size":2075,"stargazers_count":8,"open_issues_count":1,"forks_count":8,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-12T22:06:26.641Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://online-meeting-list.netlify.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/code4recovery.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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":"2020-02-19T03:56:40.000Z","updated_at":"2025-04-02T01:25:28.000Z","dependencies_parsed_at":"2024-06-21T16:58:29.274Z","dependency_job_id":"6f8fe895-7b88-47fa-893d-b7b093d61ee4","html_url":"https://github.com/code4recovery/online-meeting-list","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code4recovery%2Fonline-meeting-list","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code4recovery%2Fonline-meeting-list/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code4recovery%2Fonline-meeting-list/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code4recovery%2Fonline-meeting-list/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/code4recovery","download_url":"https://codeload.github.com/code4recovery/online-meeting-list/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248637768,"owners_count":21137538,"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":[],"created_at":"2025-02-05T07:16:35.332Z","updated_at":"2025-04-12T22:06:32.944Z","avatar_url":"https://github.com/code4recovery.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"This is a meeting finder designed to list online recovery meetings around the world. You can see it in production at the [Online Intergroup of AA](https://aa-intergroup.org/meetings/) and elsewhere on the web. There is also a [demo version](https://online-meeting-list.netlify.app).\n\n## Managing Data\n\n:warning: As of version `1.0.0`, data must be provided in [Meeting Guide-formatted JSON](https://github.com/code4recovery/spec/). Here are some options:\n\n- [Central](https://github.com/code4recovery/central/) :point_left: this is what OIAA is using\n- [12 Step Meeting List](https://wordpress.org/plugins/12-step-meeting-list/) WordPress plugin\n- [Sheets](https://sheets.code4recovery.org/) (please note the old OIAA Google Sheets format is no longer supported)\n- Custom solution\n\n## Install and run locally\n\n1. Clone this repository.\n1. In the project directory, add a file called `.env` and add this line with your data feed URL:\n\n   ```\n   REACT_APP_JSON_URL=\"https://your-website.org/meetings.json\"\n   ```\n\n1. Open your terminal and run `npm i \u0026\u0026 npm run dev` to start the app in development mode.\n\n## Deploy to your Website\n\n:warning: If you want to deploy to a subfolder, add this line to your .env file:\n\n```\nREACT_APP_BASE_URL=\"/meetings\"\n```\n\n1. In your terminal run `npm i \u0026\u0026 npm run build`.\n1. Copy the `/build/static` folder to your website.\n1. Add the following HTML to your web page (replace `chunk` below with the correct file name):\n\n```\n\u003cscript defer src=\"/static/js/main.chunk.js\"\u003e\u003c/script\u003e\n\u003cdiv id=\"root\"\u003e\u003c/div\u003e\n```\n\nYour webserver needs to point inside pages to your main page. If you are using WordPress, create a page at `/meetings` and then add the following to your theme's `functions.php`, then re-save Settings \u003e Permalinks:\n\n```\nadd_action('init', function () {\n    add_rewrite_rule('^meetings/(.*)?', 'index.php?pagename=meetings', 'top');\n});\n```\n\n## Sorting\n\nBy default, meetings are sorted by time then name. You can override and make it time then random by adding this to your `.env` file:\n\n```\nREACT_APP_SORT_BY=\"random\"\n```\n\n## Dark mode\n\nBy default, the app renders in light or dark mode depending on the user's browser preferences. This setting can be overridden with `light` or `dark`:\n\n```\nREACT_APP_COLOR_MODE=\"light\";\n```\n\nNote: local storage may need to be cleared for changes to appear.\n\n## Enable admin links in the UI\n\nIf you are an administrator, it can be handy to have links to edit your meeting entries. If your data has `edit_url` specified, you can enable these links by opening your browser console and entering\n\n```\nlocalStorage.setItem('admin', true)\n```\n\n## Contributing\n\n1. Create an issue that describes the problem you are solving. Screenshots are helpful.\n1. Create a branch with your code. (Style note: please use [Prettier](https://prettier.io), and keep properties in alphabetical order)\n1. Be sure your branch is current. Use `git pull origin \u0026\u0026 git merge main \u0026\u0026 npm i`\n1. Create a pull request that references the issue. Please name [@joshreisner](https://github.com/joshreisner) as a reviewer.\n\n## Technical Overview\n\nThis project is written in [TypeScript](https://www.typescriptlang.org/) and was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). UI elements by [Chakra](https://chakra-ui.com/). It uses [Luxon](https://moment.github.io/luxon/#/) for time conversions and [React Infinite Scroller](https://cassetterocks.github.io/react-infinite-scroller) for rendering performance.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcode4recovery%2Fonline-meeting-list","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcode4recovery%2Fonline-meeting-list","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcode4recovery%2Fonline-meeting-list/lists"}