Independent FastAPI backend for the MaskanX agentic growth platform. Includes the agent runtime, MCP client integrations (Meta Ads, LinkedIn, HubSpot, Tavily, Exa, xAI, Citedy, image generation), PostgreSQL storage for chats and cron jobs, provider and secret management, and the CLI. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
16 lines
439 B
Plaintext
16 lines
439 B
Plaintext
[supervisord]
|
|
user=root
|
|
logfile=/var/log/supervisord.log
|
|
pidfile=/var/log/supervisord.pid
|
|
nodaemon=true
|
|
|
|
[program:app]
|
|
command=maskanx app --host 0.0.0.0 --port ${ADCLAW_PORT}
|
|
user=maskanx
|
|
autostart=true
|
|
autorestart=true
|
|
priority=30
|
|
stderr_logfile=/var/log/app.err.log
|
|
stdout_logfile=/var/log/app.out.log
|
|
environment=DISPLAY=":1",PLAYWRIGHT_CHROMIUM_EXECUTABLE_PATH="/usr/bin/chromium",ADCLAW_RUNNING_IN_CONTAINER="1",HOME="/home/maskanx"
|