Quick Start Guide
Transform Your Business Intelligence with AI-Powered Knowledge Management
Prerequisites
Quick Setup (3 steps)
1. Create Project Directory
mkdir ainexlayer && cd ainexlayer2. Create Configuration Files
# Create docker-compose.yml
cat > docker-compose.yml << 'EOF'
name: ainexlayer
services:
ainexlayer:
container_name: ainexlayer
image: alakinfotech/ainexlayer:latest
ports:
- "3000:3001"
volumes:
- "./storage:/app/server/storage"
environment:
- NODE_ENV=production
- STORAGE_DIR=/app/server/storage
- JWT_SECRET=${JWT_SECRET:-your-super-secret-jwt-key}
- LLM_PROVIDER=${LLM_PROVIDER:-openai}
- OPEN_AI_KEY=${OPEN_AI_KEY:-your-openai-api-key}
- VECTOR_DB=${VECTOR_DB:-lancedb}
- MULTI_USER_MODE=${MULTI_USER_MODE:-false}
restart: unless-stopped
EOF
# Create .env file
cat > .env << 'EOF'
# Required: Your OpenAI API key
OPEN_AI_KEY=your-openai-api-key-here
# JWT Secret (change this in production)
JWT_SECRET=your-super-secret-jwt-key-change-this
# LLM Provider
LLM_PROVIDER=openai
# Vector Database
VECTOR_DB=lancedb
# Multi-user mode
MULTI_USER_MODE=false
EOF3. Start AINexLayer
Access Your Instance
Getting Started
1. Create Your First Workspace
2. Upload Documents
3. Start Chatting
Essential Commands
View Logs
Stop Services
Update to Latest Version
Troubleshooting
Common Issues
Configuration Options
Environment Variables
Production Settings
Last updated
