{"id":29541919,"url":"https://github.com/fraimerdev/luminae","last_synced_at":"2026-04-11T02:01:47.707Z","repository":{"id":290476523,"uuid":"964661743","full_name":"fraimerdev/luminae","owner":"fraimerdev","description":"A Discord bot featuring an advanced leveling system, customizable giveaways, and server management utilities.","archived":false,"fork":false,"pushed_at":"2025-09-29T18:26:13.000Z","size":603,"stargazers_count":3,"open_issues_count":5,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-04T02:59:49.944Z","etag":null,"topics":["giveaway","giveaway-bot","giveaways","hono","honojs","leveling","leveling-bot","mongodb","nextjs","prisma","typescript"],"latest_commit_sha":null,"homepage":"https://luminae.lol","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/fraimerdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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,"zenodo":null}},"created_at":"2025-04-11T15:19:38.000Z","updated_at":"2025-05-08T15:41:57.000Z","dependencies_parsed_at":"2025-07-15T16:38:39.082Z","dependency_job_id":null,"html_url":"https://github.com/fraimerdev/luminae","commit_stats":null,"previous_names":["fraimerr/luminae","plxcsy/luminae","fraimerdev/luminae"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fraimerdev/luminae","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fraimerdev%2Fluminae","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fraimerdev%2Fluminae/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fraimerdev%2Fluminae/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fraimerdev%2Fluminae/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fraimerdev","download_url":"https://codeload.github.com/fraimerdev/luminae/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fraimerdev%2Fluminae/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31530641,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"ssl_error","status_checked_at":"2026-04-07T16:28:06.951Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["giveaway","giveaway-bot","giveaways","hono","honojs","leveling","leveling-bot","mongodb","nextjs","prisma","typescript"],"created_at":"2025-07-17T10:02:02.800Z","updated_at":"2026-04-07T21:31:46.770Z","avatar_url":"https://github.com/fraimerdev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Luminae\n\nA Discord bot featuring an advanced leveling system, customizable giveaways, and server management utilities with more features to come soon. (In Development)\n\n![Luminae's Tech Stack](https://skillicons.dev/icons?i=bun,discordjs,ts,mongodb,prisma,next,tailwind,redis)\n\nFeel free to contribute!\n\n## Features\n\n- **Leveling System**\n\n  - Customizable level-up messages and channels\n  - XP tracking for messages and reactions\n  - Voice time tracking\n\n- **Giveaway System**\n\n  - Customizable requirements\n  - Customizable multipliers\n\n- **Server Management**\n  - Moderation commands\n  - User information tracking\n  - Server statistics\n  \n- **... More ccoming soon**\n\n## Project Structure\n\n```\napps/\n  ├─ api/      # API for web dashboard using Hono\n  ├─ bot/      # Discord bot\n  └─ web/      # Web dashboard\npackages/\n  ├─ db/       # Database utils\n  ├─ redis/    # Redis cache layer\n  ├─ shared/   # Shared utils\n  └─ types/    # Type definitions\n```\n\n## Prerequisites\n\n- Node.js 18 or higher\n- Bun runtime\n- MongoDB database\n- Redis (optional, for caching)\n- Discord\n\n## Installation\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/fraimerr/luminae.git\n   cd luminae\n   ```\n\n2. Install dependencies:\n\n   ```bash\n   bun install\n   ```\n\n3. Set up environment variables:\n   Create `.env` files in the following locations:\n\n   **Root (.env)**\n\n   ```env\n   DATABASE_URL=\"mongo db uri herer\"\n   ```\n\n   **Bot (apps/bot/.env)**\n\n   ```env\n   BOT_TOKEN=\"your-discord-bot-token\"\n   DEBUG=\"true\"\n   ```\n\n   **API (apps/api/.env)**\n\n   ```env\n   DISCORD_CLIENT_ID=\"your-client-id\"\n   DISCORD_CLIENT_SECRET=\"your-client-secret\"\n   DISCORD_REDIRECT_URI=\"http://localhost:5000/v1/auth/callback\"\n   DISCORD_BOT_TOKEN=\"your-discord-bot-token\"\n   JWT_SECRET=\"your-jwt-secret\"\n   ```\n\n4. Initialize the database:\n   ```bash\n   bun run db:generate\n   bun run db:push\n   ```\n\n## Development\n\nStart individual services:\n\n```bash\n# API\ncd apps/api\nbun run dev\n\n# Bot\ncd apps/bot\nbun run dev\n\n# Web\ncd apps/web\nbun run dev\n```\n\n## Contributing\n\nBefore contributing ensure to follow these steps\n\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feature/your-feature`)\n3. Commit your changes (`git commit -m 'Add your feature'`)\n4. Push to the branch (`git push origin feature/your-feature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the ISC License.\n\n## Support\n\nJoin our [Community server](https://discord.gg/CG6W5txMqu) for support and updates.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffraimerdev%2Fluminae","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffraimerdev%2Fluminae","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffraimerdev%2Fluminae/lists"}