{"id":22245891,"url":"https://github.com/mmvergara/mmv-ashera","last_synced_at":"2026-04-18T04:32:11.121Z","repository":{"id":63914165,"uuid":"562686788","full_name":"mmvergara/mmv-ashera","owner":"mmvergara","description":"Lightweight app that can manage your tasks and notes, yep That's it!","archived":false,"fork":false,"pushed_at":"2023-01-12T08:28:35.000Z","size":373,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-25T11:22:46.515Z","etag":null,"topics":["chakra-ui","firebase","react","tailwindcss"],"latest_commit_sha":null,"homepage":"https://mmv-ashera.vercel.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/mmvergara.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}},"created_at":"2022-11-07T03:11:46.000Z","updated_at":"2024-06-02T10:56:03.000Z","dependencies_parsed_at":"2023-01-14T13:30:35.803Z","dependency_job_id":null,"html_url":"https://github.com/mmvergara/mmv-ashera","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mmvergara/mmv-ashera","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mmvergara%2Fmmv-ashera","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mmvergara%2Fmmv-ashera/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mmvergara%2Fmmv-ashera/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mmvergara%2Fmmv-ashera/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mmvergara","download_url":"https://codeload.github.com/mmvergara/mmv-ashera/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mmvergara%2Fmmv-ashera/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31956849,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"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":["chakra-ui","firebase","react","tailwindcss"],"created_at":"2024-12-03T05:19:35.154Z","updated_at":"2026-04-18T04:32:11.084Z","avatar_url":"https://github.com/mmvergara.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Getting Started\n\n## About\n\nAshera Notes lightweight app that can manage your tasks and notes, yep That's it! \u003cbr/\u003e\n\n- **https://mmv-ashera.vercel.app/**\n- **[Github Repository](https://github.com/mmvergara/mmv-ashera)**\n- **Deployment Date: November 6, 2022**\n\n### Technologies\n\n- **[React](https://reactjs.org/)**\n- **[Firebase](https://firebase.google.com/)**\n- **[Chakra UI](https://chakra-ui.com/)**\n\n### [Documentation Link 📃](https://mmv-docs.vercel.app/docs/ashera/getting-started)\n\n## Installation\n\n### Setup Firebase\n\n#### Firebase\n\nAshera is using Firebase as a backend more specifically 'Firestore' for realtime updates\n\n##### Frontend Setup\n\n```jsx\nimport { initializeApp } from \"firebase/app\";\nimport { getAuth } from \"firebase/auth\";\nimport { addDoc, arrayUnion, arrayRemove, collection, doc } from \"firebase/firestore\";\nimport { getFirestore, updateDoc, serverTimestamp, deleteDoc } from \"firebase/firestore\";\n\n//Firebase App Initialize\nexport const appFB = initializeApp(firebaseConfig);\n\n//Services\nexport const firestoreDB = getFirestore();\nexport const authFB = getAuth();\n\n//References\nexport const taskSectionRef = collection(firestoreDB, \"TaskSections\");\nexport const notesRef = collection(firestoreDB, \"Notes\");\n```\n\n##### Cloud Firestore Security rules\n\n- We allow read,update,delete if the user is authenticated and is the owner\n- We allow create if the user is authenticated\n\n```javascript\n  rules_version = '2';\n  service cloud.firestore {\n    match /databases/{database}/documents {\n\n        match /TaskSections/{TaskSectionName} {\n          allow read,update,delete: if request.auth != null \u0026\u0026 request.auth.uid == resource.data.author;\n          allow create: if request.auth != null;\n        }\n\n        match /Notes/{TaskSectionName} {\n          allow read,update,delete: if request.auth != null \u0026\u0026 request.auth.uid == resource.data.noteAuthor;\n          allow create: if request.auth != null;\n        }\n\n    }\n  }\n```\n\n\n### Environment Variables and Dependencies\n\n- Change Config at ./src/Config.tsx\n- npm install \u0026 npm start\n\n- Fill out .env file\n\n```jsx\nMONGODB_URI=\nSECRET_KEY_EXP=\nHOST=\nPORT=\n```\n\n- `npm install`\n- `npm run dev / npm start`\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmmvergara%2Fmmv-ashera","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmmvergara%2Fmmv-ashera","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmmvergara%2Fmmv-ashera/lists"}