How to install decolua/9router. Official installation instructions. Project installation guide. Framework or library installation. Build installation instructions. How to setup and install from GitHub. Installation steps and setup instructions. Official docs and installation instructions GitHub.
decolua/9router Installation Guide
How to install decolua/9router. Official project installation instructions and setup guide.
⚡
Automated Install (Recommended)
Quick installation instructions for decolua/9router. This is the fastest way to complete project installation and setup.
Install via curl
curl -fsSL https://hexmos.com/ipm-install | bash &&
ipm i decolua/9routeror
Install via npx
npx @hexmos/ipm i decolua/9routerManual Installation Methods
Manual installation instructions. How to install from GitHub source.
Install Globally via npm
npm install -g 9router
9routerRun from Source (Development)
cp .env.example .env
npm install
PORT=20128 NEXT_PUBLIC_BASE_URL=http://localhost:20128 npm run devRun from Source (Production)
npm run build
PORT=20128 HOSTNAME=0.0.0.0 NEXT_PUBLIC_BASE_URL=http://localhost:20128 npm run startDocker Deployment
docker build -t 9router .
docker run -d --name 9router -p 20128:20128 --env-file ./.env -v 9router-data:/app/data -v 9router-usage:/root/.9router 9router