Installation
Get Argus running locally in minutes.
Prerequisites
- Node.js 18+
- PostgreSQL 14+
- npm or pnpm
Clone & Install
# Clone the repository
git clone https://github.com/VitalPointAI/argus.git
cd argus
# Install dependencies
npm install
Database Setup
Create a PostgreSQL database:
CREATE DATABASE argus;
Run migrations:
npm run db:migrate
Seed initial sources (optional):
npm run db:seed
Start Development Server
npm run dev
The dashboard will be available at http://localhost:3000.
Production Build
# Build all packages
npm run build
# Start production server
npm run start
Docker (Coming Soon)
docker-compose up -d