-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
55 lines (45 loc) · 1.67 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Template for environment variables
# Copy this file to .env and replace with your actual tokens
# Logging configuration
# Options: DEBUG, INFO, WARNING, ERROR, CRITICAL
LOG_LEVEL=ERROR
# GitHub personal access token
# Used for accessing GitHub API
GITHUB_TOKEN=your_github_token
# GitHub repository configuration
# Used to override config.yaml settings
GITHUB_OWNER=apache
GITHUB_REPO=superset
# Database configuration
# Used to specify which database backend to use
# Options: motherduck, postgresql, sqlite, rds
DATABASE_TYPE=motherduck
# MotherDuck token and configuration
# Must be in JWT format with two dots (Header.Payload.Signature)
# Example format: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c
MOTHERDUCK_TOKEN=your_motherduck_token
MOTHERDUCK_DATABASE=superset_stats
# PostgreSQL configuration (if using DATABASE_TYPE=postgresql)
POSTGRESQL_HOST=localhost
POSTGRESQL_PORT=5432
POSTGRESQL_DATABASE=superset_stats
POSTGRESQL_USERNAME=postgres
POSTGRESQL_PASSWORD=
# SQLite configuration (if using DATABASE_TYPE=sqlite)
SQLITE_PATH=superset_stats.db
# RDS configuration (if using DATABASE_TYPE=rds)
RDS_HOST=your-rds-instance.amazonaws.com
RDS_PORT=5432
RDS_DATABASE=superset_stats
RDS_USERNAME=admin
RDS_PASSWORD=
# Slack API token
# Used for accessing Slack workspace data
# Requires users:read scope
SLACK_API_TOKEN=your_slack_api_token
# Matomo API configuration
# Used for accessing Matomo analytics data
# Optional, as public data can be accessed without authentication
MATOMO_KEY=your_matomo_key
MATOMO_BASE_URL=https://analytics.apache.org/index.php
MATOMO_SITE_ID=22