{"id":25890618,"url":"https://github.com/madhvi-n/mindscribe","last_synced_at":"2026-05-13T23:35:45.823Z","repository":{"id":127035012,"uuid":"571121899","full_name":"madhvi-n/mindscribe","owner":"madhvi-n","description":"MindScribe - A sleek and intuitive note-taking app inspired by Google Keep for organizing your thoughts effortlessly.","archived":false,"fork":false,"pushed_at":"2025-02-25T15:22:09.000Z","size":1048,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-25T16:24:38.010Z","etag":null,"topics":["angular10","django","django-rest-framework","google-keep-clone","mindscribe"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/madhvi-n.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}},"created_at":"2022-11-27T08:27:14.000Z","updated_at":"2025-02-25T15:24:10.000Z","dependencies_parsed_at":null,"dependency_job_id":"cfcc6dab-a091-44b3-8847-3db1cfd1a398","html_url":"https://github.com/madhvi-n/mindscribe","commit_stats":null,"previous_names":["madhvi-n/mindscribe"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/madhvi-n%2Fmindscribe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/madhvi-n%2Fmindscribe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/madhvi-n%2Fmindscribe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/madhvi-n%2Fmindscribe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/madhvi-n","download_url":"https://codeload.github.com/madhvi-n/mindscribe/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241559757,"owners_count":19982310,"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":["angular10","django","django-rest-framework","google-keep-clone","mindscribe"],"created_at":"2025-03-02T19:28:22.479Z","updated_at":"2025-10-15T08:37:43.346Z","avatar_url":"https://github.com/madhvi-n.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🗒️ MindScribe - Capture, Organize, and Retrieve Your Thoughts Effortlessly\r\n\r\n[![Django CI](https://github.com/madhvi-n/mindscribe/actions/workflows/django.yml/badge.svg?branch=main)](https://github.com/madhvi-n/mindscribe/actions/workflows/django.yml)\r\n[![Python](https://img.shields.io/badge/Python-3.11-blue)](https://www.python.org/)\r\n[![Django](https://img.shields.io/badge/Django-5.1-brightgreen?style=flat\u0026logo=django\u0026logoColor=white)](https://www.djangoproject.com/)\r\n[![Django Rest Framework](https://img.shields.io/badge/Django_Rest_Framework-3.15-red)](https://www.django-rest-framework.org/)\r\n[![Angular](https://img.shields.io/badge/Angular-10-blueviolet)](https://angular.io/)\r\n\r\n**MindScribe** is a Google Keep-inspired note-taking application built with Django and Angular. It enables users to create, manage, and organize notes efficiently with a simple and intuitive interface.\r\n\r\n## 🚀 Features\r\n\r\n### 📝 Note Management\r\n\r\n- Create, edit, and delete notes\r\n- Add labels to categorize notes\r\n- Pin important notes\r\n- Archive and restore notes\r\n\r\n### 🎨 Rich Text \u0026 Multimedia\r\n\r\n- Support for text formatting\r\n- Attach images and links\r\n- Color-coded notes for better organization\r\n\r\n### 🔄 Synchronization \u0026 Collaboration\r\n\r\n- Real-time updates *(To-Do)*\r\n- Multi-user note sharing *(To-Do)*\r\n- Collaboration with team members *(To-Do)*\r\n\r\n## 🏗 **Tech Stack**\r\n\r\n- **Backend:** Python 3.11, Django 5.1, Django REST Framework\r\n- **Database:** PostgreSQL/MySQL\r\n- **API Security:** JWT Authentication\r\n- **Frontend:** Angular 19\r\n\r\n## ⚙️ Installation \u0026 Setup\r\n\r\n1. Clone the Repository\r\n\r\n    ```bash\r\n    git clone https://github.com/madhvi-n/mindscribe.git\r\n    cd mindscribe\r\n    ```\r\n\r\n2. Set up a virtual environment\r\n\r\n    ```bash\r\n    python -m venv venv\r\n    source venv/bin/activate  # On macOS/Linux\r\n    venv\\Scripts\\activate  # On Windows\r\n    ```\r\n\r\n3. Install Dependencies\r\n\r\n    ```bash\r\n    pip install -r requirements.txt\r\n    ```\r\n\r\n4. Apply Database Migrations\r\n\r\n    ```bash\r\n    python manage.py migrate\r\n    ```\r\n\r\n5. Create a Superuser\r\n\r\n    ```bash\r\n    python manage.py createsuperuser\r\n    ```\r\n\r\n6. Run the Development Server\r\n\r\n    ```bash\r\n    python manage.py runserver\r\n    ```\r\n\r\n    Access the application at: `http://127.0.0.1:8000`\r\n\r\n## 📝 API Documentation\r\n\r\nThe API documentation is available via **Swagger**:\r\n\r\n- **Swagger UI:** `http://127.0.0.1:8000/api/swagger/`\r\n- **Redoc:** `http://127.0.0.1:8000/api/redoc/`\r\n\r\n## ⚙️ Environment Variables *(Example .env file)*\r\n\r\n```ini\r\nSECRET_KEY=django-secret-key\r\nDEBUG=True\r\nDATABASE_NAME=db-name\r\nDATABASE_USER=db-user\r\nDATABASE_PASSWORD=db-password\r\nDATABASE_HOST=db-host\r\nDATABASE_PORT=5432\r\nEMAIL_HOST_USER=email-host-user\r\nEMAIL_HOST_PASSWORD=email-host-password\r\n```\r\n\r\n## 🔮 Future Enhancements\r\n\r\n- Real-time syncing\r\n- Collaboration \u0026 note sharing\r\n- Dark mode \u0026 UI themes\r\n- Voice-to-text notes\r\n\r\n### 🎉 **Happy Coding!** 🚀\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmadhvi-n%2Fmindscribe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmadhvi-n%2Fmindscribe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmadhvi-n%2Fmindscribe/lists"}