{"id":29900518,"url":"https://github.com/plus62store/new_plus62store","last_synced_at":"2026-02-20T23:39:36.372Z","repository":{"id":282057739,"uuid":"947303498","full_name":"plus62store/new_plus62store","owner":"plus62store","description":"Toko Online Jekyll simpleCart x Midtrans checkout WhatsApp form","archived":false,"fork":false,"pushed_at":"2026-02-10T04:12:51.000Z","size":8186,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-10T09:11:54.205Z","etag":null,"topics":["firebase-auth","firestore","ionic-framework","jekyll","jekyll-ionic","jekyll-onlineshop","midtrans","online-shop","pwa-apps","spa"],"latest_commit_sha":null,"homepage":"https://plus62store.pages.dev","language":"JavaScript","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/plus62store.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2025-03-12T13:30:02.000Z","updated_at":"2026-02-10T04:12:54.000Z","dependencies_parsed_at":"2025-04-23T07:43:14.332Z","dependency_job_id":"6a4f2bdc-780a-4b63-a2cf-0fb6f21a8fdc","html_url":"https://github.com/plus62store/new_plus62store","commit_stats":null,"previous_names":["plus62store/62store"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/plus62store/new_plus62store","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plus62store%2Fnew_plus62store","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plus62store%2Fnew_plus62store/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plus62store%2Fnew_plus62store/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plus62store%2Fnew_plus62store/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/plus62store","download_url":"https://codeload.github.com/plus62store/new_plus62store/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plus62store%2Fnew_plus62store/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29667873,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-20T23:24:07.480Z","status":"ssl_error","status_checked_at":"2026-02-20T23:24:06.202Z","response_time":59,"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":["firebase-auth","firestore","ionic-framework","jekyll","jekyll-ionic","jekyll-onlineshop","midtrans","online-shop","pwa-apps","spa"],"created_at":"2025-08-01T13:46:47.419Z","updated_at":"2026-02-20T23:39:36.366Z","avatar_url":"https://github.com/plus62store.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Jekyllionic Boilerplate\n\nJekyllIonic Boilerplate is a lightweight and cleaned up version of the initial [Jekyll](https://jekyllrb.com/) with [ionic](https://ionicframework.com/docs/components) setup. The motivation behind this project was for me to avoid doing the same things over and over every time I build yet another site with Jekyll.\n\n## Features\n\n* ionic 8\n* Single Page Application (SPA)\n* PWA\n* firestore (firebase)\n* Admin Dashboard\n* simpleCart Customized\n* Midtrans Payment integration\n* Redeem Coins\n\n## Rules firestore\n\n```shell\n\nrules_version = '2';\nservice cloud.firestore {\n  match /databases/{database}/documents {\n    \n    match /users/{userId} {\n      \n      allow read: if request.auth != null \u0026\u0026 request.auth.uid == userId;\n\n      allow update: if request.auth != null \u0026\u0026\n                    request.auth.uid == userId \u0026\u0026\n                    isSafeUpdate(request.resource.data, resource.data);\n\n      allow create: if request.auth != null \u0026\u0026 request.auth.uid == userId;\n\n      allow delete: if false;\n    }\n\nfunction isSafeUpdate(newData, oldData) {\n  // Hanya izinkan field-field berikut yang bisa diubah\n  return newData.keys().hasOnly([\n    'coins', \n    'email', \n    'updatedAt',\n    'name',\n    'phone',\n    'address',\n    'photoURL'\n  ]) \u0026\u0026\n  (!newData.keys().hasAny(['email']) || newData.email == oldData.email) \u0026\u0026\n  (newData.name != null \u0026\u0026 newData.name != \"\");\n}\n\n    function isValidWhatsapp(phone) {\n      return phone is string \u0026\u0026\n             phone.size() \u003e= 13 \u0026\u0026\n             phone.matches('^08[0-9]+$');\n    }\n\n    function isValidURL(photoURL) {\n      return photoURL is string \u0026\u0026 photoURL.matches('^https?://');\n    }\n\n    function isValidNama(name) {\n      return name is string \u0026\u0026 name.size() \u003e 0;\n    }\n\n    // Validasi perubahan coins: perubahan tidak ekstrem (misalnya max ±10.000)\n    function isValidCoinsChange(newCoins, oldCoins) {\n      return newCoins is number \u0026\u0026\n             oldCoins is number \u0026\u0026\n             newCoins \u003e= 0 \u0026\u0026\n             (newCoins - oldCoins).abs() \u003c= 10000;\n    }\n  }\n}\n\n```\n\n## Credits\n\n* [Jekyll](https://jekyllrb.com/)\n* [ionic](https://ionicframework.com/docs/components)\n* [Daffa Mia](https://github.com/daffadev-mia)\n* [DEMO](https://plus62webstore.pages.dev)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplus62store%2Fnew_plus62store","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fplus62store%2Fnew_plus62store","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplus62store%2Fnew_plus62store/lists"}