-
Notifications
You must be signed in to change notification settings - Fork 0
QUICKSTART
AutoBotSolutions edited this page Apr 29, 2026
·
1 revision
Get NEXUS running in under 10 minutes.
- Node.js 14+ installed
- MongoDB 4.4+ installed and running
- Git (optional, for cloning)
git clone <repository-url>
cd nexusOr download and extract the zip file.
npm installcp .env.example .envEdit .env with minimum required settings:
PORT=3000
MONGODB_URI=mongodb://localhost:27017/nexus-support
JWT_SECRET=your-secure-secret-here# Linux/macOS
mongod
# Windows
mongod --dbpath C:\data\dbnpm startOpen your browser: http://localhost:3000
- Click "Create Ticket"
- Fill in:
- Title: "Test Ticket"
- Description: "This is a test ticket"
- Your Name: "John Doe"
- Your Email: "john@example.com"
- Click "Create Ticket"
- View your ticket in "View Tickets"
To enable GitHub features, add to .env:
GITHUB_WEBHOOK_SECRET=your-webhook-secret
GITHUB_TOKEN=your-github-token
GITHUB_REPO_OWNER=your-username
GITHUB_REPO_NAME=your-repoMongoDB connection failed:
- Ensure MongoDB is running:
mongod - Check MONGODB_URI in
.env
Port already in use:
- Change PORT in
.envto 3001 or another port
Dependencies failed:
- Delete
node_modulesand runnpm installagain
After successful setup:
- Read full NEXUS Installation Guide
- Configure GitHub Integration
- Review NEXUS API Documentation
- Deploy to production with NEXUS Deployment Guide
For issues, see NEXUS Troubleshooting Guide or check NEXUS FAQ.