{"id":50439910,"url":"https://github.com/devhoangkien/medium-mgt","last_synced_at":"2026-05-31T18:31:06.093Z","repository":{"id":341769147,"uuid":"1171295295","full_name":"devhoangkien/medium-mgt","owner":"devhoangkien","description":null,"archived":false,"fork":false,"pushed_at":"2026-03-03T08:32:41.000Z","size":164,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-03T10:59:14.993Z","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/devhoangkien.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-03-03T04:23:37.000Z","updated_at":"2026-03-03T08:32:45.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/devhoangkien/medium-mgt","commit_stats":null,"previous_names":["devhoangkien/medium-mgt"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/devhoangkien/medium-mgt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devhoangkien%2Fmedium-mgt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devhoangkien%2Fmedium-mgt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devhoangkien%2Fmedium-mgt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devhoangkien%2Fmedium-mgt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devhoangkien","download_url":"https://codeload.github.com/devhoangkien/medium-mgt/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devhoangkien%2Fmedium-mgt/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33744444,"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-31T02:00:06.040Z","response_time":95,"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":"2026-05-31T18:31:05.529Z","updated_at":"2026-05-31T18:31:06.086Z","avatar_url":"https://github.com/devhoangkien.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Medium Bot Manager 📝\n\nTự động hóa đăng bài lên nhiều Medium accounts cùng lúc.\n\n## Features\n\n- ✅ Quản lý nhiều Medium accounts\n- ✅ Tạo \u0026 chỉnh sửa articles (Markdown support)\n- ✅ Tự động đăng bài với scheduling\n- ✅ Publish lên nhiều accounts cùng lúc\n- ✅ Theo dõi publish history \u0026 status\n- ✅ Rate limiting để tránh bị ban\n- ✅ Cookie encryption cho security\n\n## Tech Stack\n\n- **Frontend:** Nuxt 4 + Vue 3 + TailwindCSS\n- **Backend:** Nuxt Server Routes (Nitro)\n- **Database:** PostgreSQL + Prisma ORM\n- **Queue:** Redis + BullMQ\n- **Bot:** Playwright (Chromium)\n\n## Quick Start\n\n### 1. Install Dependencies\n\n```bash\nnpm install\n```\n\n### 2. Setup Environment\n\n```bash\ncp .env.example .env\n# Edit .env with your database credentials\n```\n\n### 3. Setup Database\n\n```bash\n# Generate Prisma client\nnpm run db:generate\n\n# Push schema to database\nnpm run db:push\n\n# Or run migrations\nnpm run db:migrate\n```\n\n### 4. Run Development Server\n\n```bash\nnpm run dev\n```\n\nOpen http://localhost:3000\n\n## Project Structure\n\n```\nmedium-bot-manager/\n├── prisma/\n│   └── schema.prisma       # Database schema\n├── server/\n│   ├── api/                # API endpoints\n│   ├── services/           # Business logic\n│   └── utils/              # Utilities\n├── pages/                  # Nuxt pages\n├── components/             # Vue components\n├── layouts/                # Layout templates\n└── composables/            # Vue composables\n```\n\n## API Endpoints\n\n### Accounts\n- `GET /api/accounts` - List all accounts\n- `POST /api/accounts` - Add new account\n- `DELETE /api/accounts/:id` - Remove account\n- `POST /api/accounts/:id/verify` - Verify session\n\n### Articles\n- `GET /api/articles` - List articles\n- `POST /api/articles` - Create article\n- `PUT /api/articles/:id` - Update article\n- `DELETE /api/articles/:id` - Delete article\n- `POST /api/articles/:id/publish` - Publish article\n\n## Security\n\n- Cookies được mã hóa AES-256\n- JWT authentication cho API\n- Rate limiting (3-5 posts/account/ngày)\n- Session auto-verification\n\n## Development\n\n```bash\n# Run dev server\nnpm run dev\n\n# Build for production\nnpm run build\n\n# Preview production build\nnpm run preview\n\n# Open Prisma Studio\nnpm run db:studio\n```\n\n## Deployment\n\n### Docker\n\n```bash\ndocker-compose up -d\n```\n\n### Manual\n\n```bash\nnpm run build\nnpm run preview\n```\n\n## License\n\nPrivate - All rights reserved\n\n---\n\nBuilt with ❤️ by Austin\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevhoangkien%2Fmedium-mgt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevhoangkien%2Fmedium-mgt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevhoangkien%2Fmedium-mgt/lists"}