AdlyseAdlyseDocs
Welcome
Getting Started
QuickstartOnboarding Wizard
Essentials
DashboardAd AccountsExplorerReportsSearch TermsDecision Log
AI Studio
Adlyse AISkillsGuidelinesSchedules
Admin
OrganizationTeam
Integrations
OverviewMCP Servers →API Keys
Legacy Docs
OverviewQuickstartCookbookWorkflowVariablesKnowledge BaseAPI Keys (legacy)NodesSelf HostingSelf-Host Auth
  1. Overview/
  2. Self Hosting

Self-Hosting Overview

Run Adlyse on your own infrastructure for complete control over your data and deployment.

Why Self-Host?#

  • Data Privacy - Keep all data within your infrastructure
  • Compliance - Meet regulatory requirements (HIPAA, GDPR, etc.)
  • Customization - Modify and extend the platform
  • Performance - Optimize for your specific use case

Requirements#

System Requirements#

  • Docker and Docker Compose
  • 4+ CPU cores
  • 8GB+ RAM
  • 50GB+ storage

External Services#

  • PostgreSQL database
  • Redis (for caching and queues)
  • LLM API access (OpenAI, Anthropic, etc.)

Quick Start#

bash
# Clone the repository
git clone https://github.com/adlyse/adlyse.git
 
# Configure environment
cp .env.example .env
# Edit .env with your settings
 
# Start services
docker-compose up -d

Configuration#

Key environment variables:

  • DATABASE_URL - PostgreSQL connection string
  • REDIS_URL - Redis connection string
  • OPENAI_API_KEY - For LLM functionality
  • SECRET_KEY - Application secret

See the Authentication guide for security configuration.

Support#

Self-hosting support is available for enterprise customers. Contact us for assistance.

←Previous
Nodes
Next→
Self-Host Auth