{"id":50301979,"url":"https://github.com/jaygaha/note-taking-app","last_synced_at":"2026-05-28T13:09:05.101Z","repository":{"id":351668959,"uuid":"1209050676","full_name":"jaygaha/note-taking-app","owner":"jaygaha","description":"NoteTakingApp: A Flask note-taking application","archived":false,"fork":false,"pushed_at":"2026-05-01T04:04:51.000Z","size":405,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-01T06:14:39.463Z","etag":null,"topics":["auth","flask","full-stack","learning-by-doing","notes-app","python","sqlalchemy","sqlite","tailwindcss"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/jaygaha.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-13T03:35:52.000Z","updated_at":"2026-05-01T04:04:51.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jaygaha/note-taking-app","commit_stats":null,"previous_names":["jaygaha/note-taking-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jaygaha/note-taking-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaygaha%2Fnote-taking-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaygaha%2Fnote-taking-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaygaha%2Fnote-taking-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaygaha%2Fnote-taking-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jaygaha","download_url":"https://codeload.github.com/jaygaha/note-taking-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaygaha%2Fnote-taking-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33609473,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-28T02:00:06.440Z","response_time":99,"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":["auth","flask","full-stack","learning-by-doing","notes-app","python","sqlalchemy","sqlite","tailwindcss"],"created_at":"2026-05-28T13:09:04.444Z","updated_at":"2026-05-28T13:09:05.095Z","avatar_url":"https://github.com/jaygaha.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NoteTakingApp\n\nA note-taking application built with **Flask** and **Tailwind CSS**. NoteTakingApp offers a clean interface for capturing ideas, organizing thoughts, and managing your daily tasks with ease.\n\n\u003e PS: I am using this note-taking app to take notes in my daily work.\n\n\n## Tech Stack\n\n- **Backend**: Python, Flask, Flask-SQLAlchemy, Flask-Login, Flask-Migrate\n- **Frontend**: Tailwind CSS, Jinja2 Templates\n- **Database**: SQLite (Development)\n\n## Getting Started\n\n### Prerequisites\n\n- Python 3.8+\n- Node.js \u0026 npm (for Tailwind CSS development)\n\n### Installation\n\n1. **Clone the repository**:\n   ```bash\n   git clone https://github.com/jaygaha/note-taking-app.git\n   cd note-taking-app\n   ```\n\n2. **Set up Virtual Environment**:\n   ```bash\n   python -m venv .venv\n   source .venv/bin/activate  # MacOS/Linux\n   # .venv\\Scripts\\activate  # Windows\n   ```\n\n3. **Install Dependencies**:\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n4. **Initialize Database**:\n   ```bash\n   flask db upgrade\n   ```\n\n### Running the Application\n\nStart the development server:\n```bash\npython run.py\n```\nThe application will be available at `http://127.0.0.1:5000`.\n\n## Frontend Development\n\nNoteTakingApp uses Tailwind CSS for styling. To compile styles during development:\n\n```bash\n# Watch for changes and recompile\nnpx tailwindcss -i app/static/src/input.css -o app/static/dist/output.css --watch\n\n# Build for production\nnpx tailwindcss -i app/static/src/input.css -o app/static/dist/output.css --minify\n```\n\n## Project Structure\n\n```text\n├── app/\n│   ├── auth/           # Authentication blueprints \u0026 logic\n│   ├── main/           # Core application routes\n│   ├── notes/          # Note-specific functionality (CRUD)\n│   ├── static/         # Dynamic \u0026 source CSS, JS, images\n│   ├── templates/      # Jinja2 HTML templates\n│   ├── models.py       # Database schemas (SQLAlchemy)\n│   └── utils.py        # Shared helper functions\n├── instance/           # Local database (SQLite)\n├── migrations/         # Database migration history\n├── config.py           # Application configuration\n└── run.py              # Application entry point\n```\n\n## Demo\n\n**Home**\n\n![Home](./ss/home.png)\n\n**Dashboard**\n\n![Dashboard](./ss/dashboard.png)\n\n\n## Contributing\n\nIf you have an idea to improve this note-taking app, feel free to fork, open an issue or submit a pull request.\n\nHappy coding! 🚀","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaygaha%2Fnote-taking-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjaygaha%2Fnote-taking-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaygaha%2Fnote-taking-app/lists"}