{"id":27135614,"url":"https://github.com/wildandhya/marbot","last_synced_at":"2026-05-01T19:34:18.602Z","repository":{"id":286668872,"uuid":"962155328","full_name":"wildandhya/marbot","owner":"wildandhya","description":"A Telegram bot built with Deno and grammY to help track daily expenses.","archived":false,"fork":false,"pushed_at":"2025-04-07T22:34:31.000Z","size":30,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-10T00:14:35.465Z","etag":null,"topics":["deno","deno-deploy","deno-kv","grammy","quickchart","telegram-bot"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/wildandhya.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":"2025-04-07T18:24:38.000Z","updated_at":"2025-04-07T22:34:34.000Z","dependencies_parsed_at":"2025-04-10T00:12:19.879Z","dependency_job_id":null,"html_url":"https://github.com/wildandhya/marbot","commit_stats":null,"previous_names":["wildandhya/marbot"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wildandhya/marbot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wildandhya%2Fmarbot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wildandhya%2Fmarbot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wildandhya%2Fmarbot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wildandhya%2Fmarbot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wildandhya","download_url":"https://codeload.github.com/wildandhya/marbot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wildandhya%2Fmarbot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32510808,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"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":["deno","deno-deploy","deno-kv","grammy","quickchart","telegram-bot"],"created_at":"2025-04-08T01:48:57.320Z","updated_at":"2026-05-01T19:34:18.590Z","avatar_url":"https://github.com/wildandhya.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🤖 Bot Expense Tracker\n\nA Telegram bot built with Deno and grammY to help track daily expenses.\n\n## 🌟 Features\n\n- 💰 Track expenses with categories\n- 📊 Generate reports (daily, weekly, monthly, yearly)\n- 📈 Visualize spending with charts\n- 👤 Personal expense tracking\n- 💾 Data persistence using Deno KV\n\n## 🔜 Upcoming Features\n\n- ⏰ Daily expense reminders\n- 💵 Monthly budget planning and alerts\n- 🔄 Recurring expense automation\n\n## 🛠️ Tech Stack\n\n- [Deno](https://deno.land/) - Runtime environment\n- [grammY](https://grammy.dev/) - Telegram Bot framework\n- [Deno KV](https://deno.com/kv) - Key-value database\n- [QuickChart](https://quickchart.io/) - Chart generation\n\n## 🚀 Getting Started\n\n### Local Development\n\n1. Clone the repository\n\n```bash\ngit clone https://github.com/yourusername/marbot.git\ncd marbot\n```\n\n2. Create a `env.sh` file:\n\n```env\nexport BOT_TOKEN=your_telegram_bot_token\n```\n\n3. Run the bot:\n\n```bash\nmake dev\n```\n\n### Production Deployment\n\n1. Install Deno Deploy CLI:\n\n```bash\ndeno install -gArf jsr:@deno/deployctl\n```\n\n2. Login to Deno Deploy:\n\n```bash\ndeployctl login\n```\n\n3. Create new project on Deno Deploy\n4. Configure environment variables:\n\n   - Go to project settings\n   - Add BOT_TOKEN with your Telegram bot token\n5. Deploy your bot:\n\n```bash\ndeployctl deploy --project=your-project-name --entrypoint=server.ts --prod\n```\n\n6. Set up Telegram Webhook:\n   - Replace YOUR_BOT_TOKEN and YOUR_DENO_DEPLOY_URL\n\n```bash\ncurl -X POST https://api.telegram.org/bot\u003cBOT_TOKEN\u003e/setWebhook?url=\u003cYOUR_DENO_DEPLOY_URL\u003e/\u003cBOT_TOKEN\u003e\n```\n\n## 📝 Commands\n\n- `/start` - Start the bot\n- `/menu` - Show main menu\n- `/catat` - Record new expense\n- `/laporan` - View expense reports\n- `/export` - Export expense data to CSV\n\n## 📊 Expense Format\n\n```\n/catat category amount note \n# or use free text\nmakan 50000 note\n```\n\nExample:\n\n```\n/catat makan 50000 lunch with friends\n```\n\nMultiple expenses:\n\n```\n/catat makan 50000 lunch, transport 25000 grab\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwildandhya%2Fmarbot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwildandhya%2Fmarbot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwildandhya%2Fmarbot/lists"}