bring back yahoo pipes!
1# Pipes Configuration
2# Secrets are loaded from .env file (see .env.example)
3# Environment variables override values in this file
4
5# Server settings
6host: localhost
7port: 3001
8origin: http://localhost:3001
9env: development
10log_level: info # debug, info, warn, error, fatal
11
12# Database
13db_path: pipes.db
14
15# OAuth (Indiko)
16indiko_url: https://indiko.example.com # Use HTTPS (HTTP redirects cause issues)
17indiko_client_id: http://localhost:3001
18indiko_client_secret: ${INDIKO_CLIENT_SECRET} # Loaded from .env
19oauth_callback_url: http://localhost:3001/auth/callback
20
21# Session
22session_secret: ${SESSION_SECRET} # Loaded from .env
23session_cookie_name: pipes_session