{"id":30208346,"url":"https://github.com/keyvaluesoftwaresystems/echolist-be","last_synced_at":"2026-02-08T21:02:42.994Z","repository":{"id":305874261,"uuid":"1024201360","full_name":"KeyValueSoftwareSystems/echolist-be","owner":"KeyValueSoftwareSystems","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-22T13:11:25.000Z","size":96,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-22T13:18:27.295Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/KeyValueSoftwareSystems.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}},"created_at":"2025-07-22T10:32:35.000Z","updated_at":"2025-07-22T10:32:39.000Z","dependencies_parsed_at":"2025-07-22T13:33:22.618Z","dependency_job_id":null,"html_url":"https://github.com/KeyValueSoftwareSystems/echolist-be","commit_stats":null,"previous_names":["keyvaluesoftwaresystems/echolist-be"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/KeyValueSoftwareSystems/echolist-be","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KeyValueSoftwareSystems%2Fecholist-be","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KeyValueSoftwareSystems%2Fecholist-be/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KeyValueSoftwareSystems%2Fecholist-be/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KeyValueSoftwareSystems%2Fecholist-be/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KeyValueSoftwareSystems","download_url":"https://codeload.github.com/KeyValueSoftwareSystems/echolist-be/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KeyValueSoftwareSystems%2Fecholist-be/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270278727,"owners_count":24557189,"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","status":"online","status_checked_at":"2025-08-13T02:00:09.904Z","response_time":66,"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":[],"created_at":"2025-08-13T17:24:46.960Z","updated_at":"2026-02-08T21:02:37.950Z","avatar_url":"https://github.com/KeyValueSoftwareSystems.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# EchoList\n\nEchoList is a voice-first productivity and personal memory assistant designed to make capturing, recalling, and sharing thoughts, tasks, and reminders effortless.\n\n## Features\n\n- **Voice-First Interaction**: Speak or type notes in real-time with AI transcription\n- **Member Tagging \u0026 Permissions**: Collaborate with family, friends, and colleagues with customized access levels\n- **Modular \u0026 Customizable Sections**: Create personalized sections for different aspects of your life\n- **Smart Organization**: AI-driven organization and retrieval of your notes and tasks\n- **Social Collaboration**: Share and collaborate on lists with trusted connections\n\n## Technical Stack\n\n- **Backend**: Python FastAPI\n- **Database**: PostgreSQL\n- **Environment**: Conda\n- **Containerization**: Docker\n- **Authentication**: JWT\n- **AI Components**: Speech-to-text, vector embeddings for semantic search\n\n## Getting Started\n\n### Prerequisites\n\n- Docker and Docker Compose\n- Conda (for local development)\n\n### Setup\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/yourusername/echolist.git\n   cd echolist\n   ```\n\n2. Create and activate a Conda environment:\n   ```bash\n   conda create -n echolist python=3.10\n   conda activate echolist\n   pip install -r requirements.txt\n   ```\n\n3. Start the PostgreSQL database:\n   ```bash\n   docker-compose up -d\n   ```\n\n4. Run database migrations:\n   ```bash\n   # Initialize Alembic (first time only)\n   alembic init migrations\n   \n   # Create a new migration\n   alembic revision --autogenerate -m \"Initial migration\"\n   \n   # Apply migrations to the database\n   alembic upgrade head\n   ```\n\n5. Run the FastAPI server:\n   ```bash\n   uvicorn main:app --reload\n   ```\n\n6. Access the API documentation:\n   ```\n   http://localhost:8000/docs\n   ```\n\n## Project Structure\n\n```\necholist/\n├── app/\n│   ├── api/           # API endpoints organized by feature\n│   ├── core/          # Core application components\n│   ├── db/            # Database connection and migrations\n│   ├── models/        # Database models\n│   ├── schemas/       # Pydantic schemas for request/response validation\n│   ├── services/      # Business logic\n│   ├── utils/         # Utility functions\n├── docker/            # Docker configuration files\n├── requirements.txt   # Python dependencies\n├── docker-compose.yml # Docker services configuration\n├── main.py            # Application entry point\n```\n\n## Database Schema\n\nThe application uses the following database tables:\n\n- **Users**: User account information and preferences\n- **Connections**: Relationships between users (Family, Friend, Colleague)\n- **Sections**: Customizable modules for organizing content\n- **SectionAccess**: Permission settings for sections\n- **Items**: Notes, tasks, and reminders with metadata\n\n## API Endpoints\n\n- **Auth**: `/api/auth/login`, `/api/auth/register`\n- **Users**: `/api/users/`\n- **Connections**: `/api/connections/`\n- **Sections**: `/api/sections/`\n- **Items**: `/api/items/`\n\n## License\n\n[MIT License](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkeyvaluesoftwaresystems%2Fecholist-be","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkeyvaluesoftwaresystems%2Fecholist-be","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkeyvaluesoftwaresystems%2Fecholist-be/lists"}