{"id":48801422,"url":"https://github.com/feed-mob/echomind","last_synced_at":"2026-04-14T03:03:23.605Z","repository":{"id":340949396,"uuid":"1168307135","full_name":"feed-mob/EchoMind","owner":"feed-mob","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-03T16:12:22.000Z","size":683,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-03T19:35:18.951Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/feed-mob.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-02-27T08:34:38.000Z","updated_at":"2026-03-25T13:22:05.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/feed-mob/EchoMind","commit_stats":null,"previous_names":["feed-mob/echomind"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/feed-mob/EchoMind","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feed-mob%2FEchoMind","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feed-mob%2FEchoMind/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feed-mob%2FEchoMind/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feed-mob%2FEchoMind/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/feed-mob","download_url":"https://codeload.github.com/feed-mob/EchoMind/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feed-mob%2FEchoMind/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31779951,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T02:24:21.117Z","status":"ssl_error","status_checked_at":"2026-04-14T02:24:20.627Z","response_time":153,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":"2026-04-14T03:03:18.819Z","updated_at":"2026-04-14T03:03:23.599Z","avatar_url":"https://github.com/feed-mob.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EchoMind\n\nEchoMind is a separated frontend/backend project organized into `api` (server) and `web` (frontend).\n\n## Demo\n\n- Live Demo: http://echo-mind.coolify-tinca.tonob.net/\n\n## Project Structure\n\n- `api/`: Backend service code (Bun + TypeScript), providing APIs and business logic.\n- `web/`: Frontend app code (Vite + TypeScript), providing the user interface.\n- `packages/`: Reserved shared package directory (for common types, utilities, SDKs, etc.).\n- `CLAUDE.md`: Project collaboration and development conventions.\n\n## Quick Start\n\n### 1) Initialize the Database\n\nThe API depends on PostgreSQL and Prisma migrations in `packages/db`.\n\nStart the local database:\n\n```bash\ndocker compose up -d postgres\n```\n\nThe default local connection is already configured in [`packages/db/.env`](/Users/roofeel/Documents/feedmob/widea/packages/db/.env):\n\n```env\nDATABASE_URL=\"postgresql://postgres:postgres@localhost:5434/echomind?schema=public\"\n```\n\nApply existing migrations to your local development database:\n\n```bash\ncd packages/db\nbun install\nbun prisma migrate deploy --schema prisma/schema.prisma\nbun prisma generate --schema prisma/schema.prisma\n```\n\nIf you want Prisma to create a new migration while developing schema changes, use:\n\n```bash\ncd packages/db\nbun prisma migrate dev --schema prisma/schema.prisma --name your_migration_name\n```\n\n### 2) Start the Backend\n\n```bash\ncd api\nbun install\nbun run dev\n```\n\nDefault URL: `http://localhost:3000`\n\n### 3) Start the Frontend\n\n```bash\ncd web\nbun install\nbun run dev\n```\n\nDefault URL (Vite): usually `http://localhost:5173`\n\n## Subdirectory Documentation\n\n- See `api/README.md` for API details.\n- See `web/README.md` for Web details.\n\n## Separate Coolify Deployment (Nixpacks)\n\nCreate two services in Coolify from the same repository, with different Base Directories:\n\n- API Service\n  - Build Pack: `Nixpacks`\n  - Base Directory: `api`\n  - Port: `3000`\n- Web Service\n  - Build Pack: `Nixpacks`\n  - Base Directory: `web`\n  - Port: `3000` (the port used by `vite preview` inside the container)\n\nThis repository already includes independent build/start settings in `api/nixpacks.toml` and `web/nixpacks.toml`, and Coolify will load them automatically based on each directory.\n\n## Google Login Setup\n\nCreate OAuth 2.0 Web Client credentials in Google Cloud Console, then set:\n\n- `web/.env.local`\n  - `VITE_GOOGLE_CLIENT_ID=your_google_web_client_id`\n- `api/.env`\n  - `GOOGLE_CLIENT_ID=your_google_web_client_id`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffeed-mob%2Fechomind","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffeed-mob%2Fechomind","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffeed-mob%2Fechomind/lists"}