Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# GitHub Integration
GITHUB_TOKEN=your_github_personal_access_token
GITHUB_REPOSITORY=techfluent-au/awesome-ai-apps

# Slack Integration
SLACK_TOKEN=xoxb-your-slack-bot-token
SLACK_WEBHOOK=https://hooks.slack.com/services/your/webhook/url
SLACK_CHANNEL=#ai-apps-deployments

# AI Service API Keys
OPENAI_API_KEY=sk-your-openai-api-key
NEBIUS_API_KEY=your-nebius-api-key
NEBIUS_PROJECT_ID=your-nebius-project-id
LANGCHAIN_API_KEY=your-langchain-api-key
CREWAI_API_KEY=your-crewai-api-key

# Database Configuration
DATABASE_URL=postgresql://ai_apps:ai_apps_password@localhost:5432/ai_apps_tasks
REDIS_URL=redis://localhost:6379/0

# Monitoring Configuration
PROMETHEUS_URL=http://localhost:9090
GRAFANA_URL=http://localhost:3000
GRAFANA_API_KEY=your-grafana-api-key

# Application Configuration
LOG_LEVEL=INFO
ENVIRONMENT=development
PORT_START=8000

# Task Management Configuration
FOLLOWUP_GENERATION_ENABLED=true
AUTOMATIC_TASK_CREATION=true
OVERDUE_CHECK_INTERVAL=3600
DAILY_REPORT_TIME=09:00

# Security Configuration
JWT_SECRET_KEY=your-super-secret-jwt-key
API_SECRET_KEY=your-api-secret-key
Loading