Administrative management interface for Podverse.
Podverse Management is a Next.js web application providing administrative tools for the Podverse support team. It connects to the Podverse Management API for backend operations.
- Node.js v22+
- npm
- Podverse Management API running on port 1999
npm installEnvironment files are located in the env/ directory:
local.env- Local developmentalpha.env- Alpha environmentbeta.env- Beta environmentproduction.env- Production environment
Development mode with hot reload (port 3999):
npm run dev:watchOr standard dev mode:
npm run devBuild for production:
npm run buildStart production server:
npm startBuild the Docker image:
docker build -t podverse-management-web .Build with alpha configuration:
docker build -f Dockerfile.build.alpha -t podverse-management-web-deploy .Key configuration:
NEXT_PUBLIC_API_HOST- Management API hostNEXT_PUBLIC_API_PORT- Management API port (default: 1999)NEXT_PUBLIC_WEB_DOMAIN- Web domain (default: localhost:3999)
AGPLv3