{"id":21339185,"url":"https://github.com/falco467/meeple-app","last_synced_at":"2026-03-03T20:05:05.698Z","repository":{"id":122306247,"uuid":"588255751","full_name":"falco467/meeple-app","owner":"falco467","description":"App for friends to vote on Boardgames and organize events","archived":false,"fork":false,"pushed_at":"2024-10-12T12:25:14.000Z","size":1380,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-12T14:45:48.225Z","etag":null,"topics":["astro","firebase","pwa","svelte","tailwind"],"latest_commit_sha":null,"homepage":"","language":"Svelte","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/falco467.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2023-01-12T17:37:59.000Z","updated_at":"2024-10-12T12:25:18.000Z","dependencies_parsed_at":"2025-06-09T19:05:15.356Z","dependency_job_id":"63efe06e-c4b0-4ff1-b66c-a61c42c3c9a4","html_url":"https://github.com/falco467/meeple-app","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/falco467/meeple-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falco467%2Fmeeple-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falco467%2Fmeeple-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falco467%2Fmeeple-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falco467%2Fmeeple-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/falco467","download_url":"https://codeload.github.com/falco467/meeple-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falco467%2Fmeeple-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30057684,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-03T18:21:05.932Z","status":"ssl_error","status_checked_at":"2026-03-03T18:20:59.341Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["astro","firebase","pwa","svelte","tailwind"],"created_at":"2024-11-22T00:42:52.649Z","updated_at":"2026-03-03T20:05:00.691Z","avatar_url":"https://github.com/falco467.png","language":"Svelte","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Meeple App\n\nThis is a small web application designed to coordinate board games events\nby voting on boardgames. It is designed to be used by a small group of friends.\n\nIt is powered by Astro (HTML Build using Vite), Svelte (reactive components),\nTailwind (Utility CSS Styling) and Firebase (Hosting, Database, Cloud Functions)\n\n## Project Structure\n\n```\n/\n├─ .vscode/            # VS Code recommended extensions and dev/build scripts\n├─ functions/          # firebase cloud functions\n│  └─ index.mjs          # functions to proxy BoardGameGeek XML API (no CORS support)\n├─ public/             # Favicons and service worker + manifest to make webapp installable\n│  └─ firebase.config    # This file needs to be created with API-Keys to your firebase instance\n├─ src/                # Code:\n│  ├─ components/        # Svelte Components\n│  ├─ js/                # Supporting JS code modules\n│  ├─ pages/             # Index Page for Astro\n│  └─ index.svelte       # Primary routing component\n├─ .eslintrc           # Linting with JS Standard Style and Svelte\n├─ astro.config        # Configuration for Astro and Vite (Build)\n├─ db.rules.json       # Firebase Database Access Rules and Validation\n├─ firebase.json       # Firebase Configuration (Deployment and Caching)\n├─ package.json        # Node.JS (npm) Dependencies\n├─ tailwind.config.cjs # Tailwind configuration\n├─ tsconfig.json       # Intellisense and Linting configuration\n└─ README.md           # this document\n```\n## Firebase Config\n\nYou will need to provide Firebase API-Keys to your firebase-project.\nYou can setup a free firebase-project and generate the needed keys in the\nfirebase console under project-settings (config and messaging)\n\nIf you want to work with my personal project and just contribute to\nthis project, you can copy the configuration from:\nhttps://meeple-cgn.web.app/firebaseConfig.js\n\n## HTTPS and Certificates\n\nTo test certain features this app should be run with HTTPs. For this you have to\nprovide a SSL certificate valid for localhost. This can easily be generated with\nan app like \"minica\". **asto.config** expects the path to your certificate and keyfile\nin enviroment variables `LOCAL_CERT` and `LOCAL_KEY`\n\n## Commands\n\nAll commands are run from the root of the project, from a terminal:\n\n| Command                | Action                                             |\n| :--------------------- | :------------------------------------------------- |\n| `npm install`          | Installs dependencies                              |\n| `npm run dev`          | Starts local dev server at `localhost:3000`        |\n| `npm run build`        | Build your production site to `./dist/`            |\n| `npm run preview`      | Preview your build locally, before deploying       |\n| `firebase login`       | Login to your own firebase project                 |\n| `firebase deploy`      | Deploy firebase hosting, functions and database    |\n\n## Firebase Cloud Functions\n\nThis project is setup to run with simple Email/Password authentication on firebase\nby default. The app can be deployed and run on firebase free of charge, but you\nwill need at least the Blaze-Plan to access Cloud Functions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffalco467%2Fmeeple-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffalco467%2Fmeeple-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffalco467%2Fmeeple-app/lists"}