{"id":19294285,"url":"https://github.com/mdecker-mobilecomputing/ionic_notizen","last_synced_at":"2026-05-17T19:09:25.505Z","repository":{"id":119792432,"uuid":"376263149","full_name":"MDecker-MobileComputing/Ionic_Notizen","owner":"MDecker-MobileComputing","description":"Ionic app for note taking to demonstrate how some services provided by firebase can be used","archived":false,"fork":false,"pushed_at":"2023-06-08T07:48:13.000Z","size":1043,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-05T21:09:14.563Z","etag":null,"topics":["firestore","ionic"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MDecker-MobileComputing.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}},"created_at":"2021-06-12T10:35:02.000Z","updated_at":"2023-10-06T07:30:35.000Z","dependencies_parsed_at":"2023-12-30T20:15:08.441Z","dependency_job_id":null,"html_url":"https://github.com/MDecker-MobileComputing/Ionic_Notizen","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MDecker-MobileComputing%2FIonic_Notizen","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MDecker-MobileComputing%2FIonic_Notizen/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MDecker-MobileComputing%2FIonic_Notizen/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MDecker-MobileComputing%2FIonic_Notizen/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MDecker-MobileComputing","download_url":"https://codeload.github.com/MDecker-MobileComputing/Ionic_Notizen/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240397177,"owners_count":19794806,"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":["firestore","ionic"],"created_at":"2024-11-09T22:37:47.964Z","updated_at":"2025-11-14T19:14:40.209Z","avatar_url":"https://github.com/MDecker-MobileComputing.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Storing notes in Firestore #\n\n\u003cbr\u003e\n\nSimple Ionic using [Firestore](https://firebase.google.com/docs/firestore/) (NoSQL database offered by [Google Firebase](https://firebase.google.com/)) to store personal notes.\nFor integration of Firebase functionaliy [Angular Fire](https://github.com/angular/angularfire) is used.\nAll the Firebase-specific code is contained in [class `FirebaseService`](src/app/firebase.service.ts).\n\n\u003cbr\u003e\n\n----\n\n## Screenshots ##\n\n\u003cbr\u003e\n\n![Screenshot 1](screenshot_1.png)    ![Screenshot 2](screenshot_2.png)\n\n\u003cbr\u003e\n\n----\n\n## Firebase Configuration ##\n\n\u003cbr\u003e\n\nFor the time being the \"old\" version 8.6.1 of the [Firebase library](https://www.npmjs.com/package/firebase) is used because of [this issue](https://github.com/angular/angularfire/issues/2838#issuecomment-858208215).\n\n\u003cbr\u003e\n\nCreate a Firebase project.\n\nEnable \"Email address and password\" as \"sign-in method\" under \"Authentication\".\n\nFor *Firestore* the following rule has to be configured (see also [this answer on SO](https://stackoverflow.com/a/55115937)):\n```\nrules_version = '2';\nservice cloud.firestore {\n  match /databases/{database}/documents {\n    match /notizensammlung/{nutzer_uid} {\n    \n      function istAngemeldet() {\n            return request.auth.uid != null;\n      }\n      allow read  : if istAngemeldet() \u0026\u0026 request.auth.uid == resource.data.nutzer_uid;\n      allow create: if istAngemeldet() \u0026\u0026 request.auth.uid == request.resource.data.nutzer_uid;\n      allow delete: if istAngemeldet() \u0026\u0026 request.auth.uid == resource.data.nutzer_uid;\n    }\n  }  \n}\n```\n\n\u003cbr\u003e\n\nCreate an index on collection `notizensammlung` for the following fields:\n* `nutzer_uid` ascending\n* `zeitstempel` ascending\n\n\u003cbr\u003e\n\n----\n\n## License ##\n\n\u003cbr\u003e\n\nSee the [LICENSE file](LICENSE.md) for license rights and limitations (BSD 3-Clause License) for the files in this repository.\n\n\u003cbr\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmdecker-mobilecomputing%2Fionic_notizen","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmdecker-mobilecomputing%2Fionic_notizen","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmdecker-mobilecomputing%2Fionic_notizen/lists"}