{"id":17710817,"url":"https://github.com/engageintellect/cryptai","last_synced_at":"2026-01-20T13:01:34.961Z","repository":{"id":240359257,"uuid":"802344060","full_name":"engageintellect/cryptai","owner":"engageintellect","description":null,"archived":false,"fork":false,"pushed_at":"2024-05-24T21:27:46.000Z","size":1749,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-07T08:45:27.558Z","etag":null,"topics":["coinmarketcap","crypto","daisyui","svelte","sveltekit","tailwindcss","vercel"],"latest_commit_sha":null,"homepage":"https://engage-cryptai.vercel.app","language":"Svelte","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/engageintellect.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-18T03:34:12.000Z","updated_at":"2024-10-15T21:05:26.000Z","dependencies_parsed_at":"2024-05-22T10:27:54.291Z","dependency_job_id":"2093e0a0-8bb1-489a-9f2c-521d357a52de","html_url":"https://github.com/engageintellect/cryptai","commit_stats":null,"previous_names":["engageintellect/cryptai"],"tags_count":0,"template":false,"template_full_name":"engageintellect/spatz","purl":"pkg:github/engageintellect/cryptai","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/engageintellect%2Fcryptai","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/engageintellect%2Fcryptai/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/engageintellect%2Fcryptai/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/engageintellect%2Fcryptai/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/engageintellect","download_url":"https://codeload.github.com/engageintellect/cryptai/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/engageintellect%2Fcryptai/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28603402,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T12:01:53.233Z","status":"ssl_error","status_checked_at":"2026-01-20T12:01:46.545Z","response_time":117,"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":["coinmarketcap","crypto","daisyui","svelte","sveltekit","tailwindcss","vercel"],"created_at":"2024-10-25T07:43:07.133Z","updated_at":"2026-01-20T13:01:34.944Z","avatar_url":"https://github.com/engageintellect.png","language":"Svelte","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cryptai\n\n## Description\n\nA comprehensive, yet simple cryptocurrency and AI/ML analysis engine built with Sveltekit, Pocketbase, CoinGecko API, OpenAI, Vercel AI SDK, TailwindCSS, and DaisyUI.\n\n**NOTE:** This project is built using the [spatz](https://github.com/engageintellect/spatz) template.\n\n[Demo App](https://engage-cryptai.vercel.app)\n\n## Features\n\n- [Sveltekit](https://kit.svelte.dev/): Futuristic web framework for building blazing fast web apps.\n- [Pocketbase](https://pocketbase.io): Self-contained User Auth, Database, Admin UI, and API documentation.\n- [OpenAI](https://openai.com): chatGPT 3.5-turbo \u0026 4.0-turbo for contextually aware chatbots.\n- [CoinGecko](https://coingecko.com): Cryptocurrency data API for market data, coin information, and more.\n- [Vercel AI SDK](https://vercel.com/ai): AI/ML models for image, text, and audio processing.\n- [TailwindCSS](https://tailwindcss.com): A utility-first CSS framework for rapid UI development.\n- [Zod](https://zod.dev): TypeScript-first schema declaration and validation.\n\n## Getting Started\n\n### Pocketbase Setup\n\n1. Create a directory for your Pocketbase instance and navigate to it.\n\n```bash\nmkdir cryptai\ncd cryptai\n```\n\n2. Download the latest release of Pocketbase, unzip it, and start the server.\n\n```bash\nwget https://github.com/pocketbase/pocketbase/releases/download/v0.22.9/pocketbase_0.22.9_linux_amd64.zip\nunzip pocketbase_0.22.9_linux_amd64.zip\n./pocketbase serve --http=\"0.0.0.0:8090\"\n```\n\n3. Log in to the Pocketbase admin console at `http://localhost:8090/_/` and create a new database.\n\n4. Go to settings \u003e Import collections, then paste in the contens of `./pocketbase/pb_schema.json` (from this repo) and click import.\n\n### Client Setup\n\n1. Clone the repo and navigate to the project directory.\n\n```bash\ngit clone https://github.com/engageintellect/cryptai\ncd cryptai\n```\n\n2. Set your Pocketbase URL and OpenAI API key in a `.env.local` file.\n\n```bash\ntouch 'PUBLIC_POCKETBASE_URL=http://localhost:8090' \u003e .env.local\ntouch 'OPENAI_API_KEY=\u003cYOUR API KEY\u003e' \u003e\u003e .env.local\n```\n\n3. Install the dependencies and start the development server.\n\n```bash\npnpm i \u0026\u0026 pnpm run dev --host\n```\n\n4. Open your browser to `http://localhost:5173` to see the app.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fengageintellect%2Fcryptai","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fengageintellect%2Fcryptai","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fengageintellect%2Fcryptai/lists"}