✨ Features: - Modern SaaS automation platform - Next.js 15 + TypeScript frontend - Node.js + Express backend - PostgreSQL database with full schema - Docker Compose setup - Admin panel with analytics - Template marketplace (6 templates) - Integrations hub (10+ services) - Authentication & role-based access - Responsive n8n-style design 🎯 Ready for demo and deployment 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
20 lines
No EOL
371 B
Text
20 lines
No EOL
371 B
Text
# Copy this file to .env and update with your values
|
|
|
|
# Database
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_NAME=saas_automation
|
|
DB_USER=postgres
|
|
DB_PASSWORD=password
|
|
|
|
# Backend
|
|
JWT_SECRET=your_super_secret_jwt_key_change_this
|
|
JWT_EXPIRES_IN=24h
|
|
PORT=3001
|
|
|
|
# Frontend
|
|
NEXT_PUBLIC_API_URL=http://localhost:3001
|
|
|
|
# n8n
|
|
N8N_BASE_URL=http://localhost:5678
|
|
N8N_API_KEY=your_n8n_api_key |