Module β’ Cloud β’ Report Bug
PotatoCloud Dashboard is a state-of-the-art, full-featured cloud management interface built with modern web technologies. It provides a comprehensive solution for managing cloud services, players, groups, and administrative tasks with an intuitive and beautiful user interface.
Designed for performance, accessibility, and developer experience, this dashboard combines cutting-edge tools and best practices to deliver an exceptional platform.
|
|
| Layer | Technologies |
|---|---|
| Frontend Framework | Nuxt 4 + Vue 3 |
| Styling | TailwindCSS 4 + Shadcn Vue |
| Database | Prisma ORM |
| Backend | Nuxt Server Routes (Node.js) / (Javalin) |
| Real-time | WebSocket Integration |
| Language | TypeScript |
| Package Manager | pnpm |
- Node.js β₯ 16.x
- pnpm (recommended) or npm/yarn
# Clone and navigate
npx nuxi@latest init -t github:feeeedox/potatocloud-dashboard potatocloud-dashboard
cd potatocloud-dashboard
# Install dependencies
pnpm install
# Start development server
pnpm run devYour dashboard will be available at http://localhost:3000
# Start with hot reload
pnpm run dev
# Build for production
pnpm run build
# Start production server
pnpm run previewpotatocloud-dashboard/
βββ app/ # Application root
β βββ components/ # Reusable Vue components
β β βββ admin/ # Admin-specific components
β β βββ dashboard/ # Dashboard components
β β βββ settings/ # Settings interface
β β βββ ui/ # UI component library
β βββ composables/ # Vue 3 composables (hooks)
β βββ pages/ # Route pages
β βββ layouts/ # Layout templates
β βββ assets/ # Static assets & styles
βββ server/ # Nuxt server routes & API
β βββ api/ # API endpoints
β β βββ auth/ # Authentication
β β βββ cloud/ # Cloud services
β β βββ member/ # Member management
β βββ utils/ # Server utilities
βββ prisma/ # Database schema
β βββ schema.prisma # Prisma data model
βββ public/ # Public static files
Customize your dashboard in app/app.config.ts:
export default defineAppConfig({
appSettings: {
sidebar: {
collapsible: 'offcanvas', // 'offcanvas' | 'icon' | 'none'
side: 'left', // 'left' | 'right'
variant: 'inset', // 'sidebar' | 'floating' | 'inset'
},
theme: {
color: 'default', // 'default' | 'blue' | 'green' | 'orange' | 'purple' | 'red' | 'teal' | 'yellow' | 'rose'
type: 'scaled', // 'default' | 'mono' | 'scaled'
}
},
})π‘ Tip: Clear the
app_settingscookie after modifying configuration to see changes take effect.
Rename the .env.example file to .env and change the values.
We love contributions! Here's how to get involved:
# 1. Fork the repository
# 2. Create your feature branch
git checkout -b feature/amazing-feature
# 3. Make your changes and commit
git commit -m 'Add amazing feature'
# 4. Push to the branch
git push origin feature/amazing-feature
# 5. Open a Pull Request- Write clean, maintainable code
- Follow TypeScript best practices
- Add tests for new features
- Update documentation as needed
- Use conventional commits
This project is licensed under the MIT License - see the LICENSE file for details.
- π Report issues
- π¬ Discuss ideas in discussions
Made with β€οΈ for the PotatoCloud Community
β If you find this helpful, please consider giving us a star!
