{"id":50940986,"url":"https://github.com/fiforms/announcementslides","last_synced_at":"2026-06-17T14:33:39.503Z","repository":{"id":363725155,"uuid":"1264638280","full_name":"fiforms/announcementslides","owner":"fiforms","description":null,"archived":false,"fork":false,"pushed_at":"2026-06-10T04:16:39.000Z","size":147,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-06-10T06:16:56.615Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Vue","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/fiforms.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-06-10T03:58:59.000Z","updated_at":"2026-06-10T04:16:45.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/fiforms/announcementslides","commit_stats":null,"previous_names":["fiforms/announcementslides"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/fiforms/announcementslides","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fiforms%2Fannouncementslides","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fiforms%2Fannouncementslides/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fiforms%2Fannouncementslides/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fiforms%2Fannouncementslides/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fiforms","download_url":"https://codeload.github.com/fiforms/announcementslides/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fiforms%2Fannouncementslides/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34453431,"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-17T02:00:05.408Z","response_time":127,"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":"2026-06-17T14:33:36.046Z","updated_at":"2026-06-17T14:33:39.498Z","avatar_url":"https://github.com/fiforms.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AnnouncementSlides\n\nA web-based announcement slide distribution system designed for Seventh-day Adventist churches. Administrators and authorized contributors can push slides to any church in the system; registered users can submit slides for review; and church leader users can configure slides specific to their local congregation.\n\n\u003e For a tour of the project layout, data model, and where the implementation lives, see [ARCHITECTURE.md](ARCHITECTURE.md).\n\n## Features\n\n- **Multi-tier role system** — admins, contributors, and church leaders each have scoped permissions\n- **Church directory integration** — loads congregations from adventistdirectory.org, organized by conference\n- **Slide submission and review workflow** — users submit slides that go through an approval process before distribution\n- **Google OAuth login** — optional single sign-on via Google accounts\n- **Multilingual support** — i18n-ready with per-language configuration\n\n## Requirements\n\n- PHP 8.4+\n- Composer\n- Node.js / npm\n- SQLite (default) or a supported relational database\n\n## Installation\n\n```bash\ngit clone \u003crepo-url\u003e announcementslides\ncd announcementslides\n\ncomposer install\nnpm install\n```\n\nCopy the environment file and generate an application key:\n\n```bash\ncp .env.example .env\nphp artisan key:generate\n```\n\nRun database migrations:\n\n```bash\nphp artisan migrate\n```\n\nBuild frontend assets:\n\n```bash\nnpm run build\n```\n\n### Create the first user\n\n```bash\nphp artisan user:create\nphp artisan user:setrole       # promote the user to admin\n```\n\n`user:setrole` will prompt for an email address and a role (`admin`, `contributor`, or `viewer`).\n\n### Load church data\n\n```bash\nphp artisan church:load        # load entities for a conference from adventistdirectory.org\nphp artisan entity:sync        # sync the local entities table\n```\n\n## Google OAuth Setup\n\nTo enable Google single sign-on, create OAuth 2.0 credentials in the [Google Cloud Console](https://console.cloud.google.com/):\n\n1. Create a project and enable the **Google+ API** (or **Google Identity**).\n2. Under **Credentials**, create an **OAuth 2.0 Client ID** of type *Web application*.\n3. Add your app URL as an authorized origin and set the redirect URI to:\n   ```\n   https://your-domain.com/auth/google/callback\n   ```\n4. Copy the client ID and secret into `.env`:\n   ```ini\n   GOOGLE_CLIENT_ID=your-client-id\n   GOOGLE_CLIENT_SECRET=your-client-secret\n   GOOGLE_REDIRECT_URI=\"${APP_URL}/auth/google/callback\"\n   ```\n\nUsers can then sign in with their Google account from the login page.\n\n## Artisan Commands\n\n| Command | Description |\n|---|---|\n| `user:create` | Create a new user account |\n| `user:list` | List all users (optionally filter by role) |\n| `user:setrole` | Set a user's role |\n| `user:setpassword` | Set a user's password |\n| `church:load` | Load Adventist entities for a conference from AdventistDirectory.org |\n| `church:list` | List all entities in the database |\n| `church:detail` | Show all stored fields for a single entity |\n| `entity:sync` | Sync the entities table |\n| `entity:assign` | Assign or remove a user role for an entity |\n| `language:add` | Add a supported language |\n| `language:list` | List all supported languages |\n\n## Development\n\nStart the development server:\n\n```bash\nphp artisan serve\nnpm run dev\n```\n\n## License\n\nMIT License (see LICENSE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffiforms%2Fannouncementslides","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffiforms%2Fannouncementslides","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffiforms%2Fannouncementslides/lists"}