A web-based service launcher and log viewer built with Nuxt.js.
- Launch and manage multiple services from a single interface
- Real-time service status monitoring
- Live log viewing with error tracking
- WebSocket-based communication for instant updates
- Track read/unread error logs
- Persistent log read status
- Nuxt.js
- Pinia for state management
- TailwindCSS for styling
- WebSocket for real-time updates
- Install dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
- Start the development server on
http://localhost:3000
:
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun dev
Build the application for production:
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run build
Locally preview production build:
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run preview
Check out the deployment documentation for more information.