1+ # =============================================================================
2+ # SIGMA PLUGIN HOST APPLICATION CONFIGURATION
3+ # =============================================================================
4+ # This file contains all configuration for the Sigma Plugin Host Application
5+ # Update the values below to match your Sigma instance and requirements
6+ #
7+ # NOTE: This is a template file with secrets removed.
8+ # Fill in your actual values before deployment.
9+ # =============================================================================
10+
11+ # =============================================================================
12+ # SIGMA API CONFIGURATION
13+ # =============================================================================
14+ # Sigma API endpoints - Update these URLs for your Sigma instance
15+ AUTH_URL = https://aws-api.sigmacomputing.com/v2/auth/token
16+ BASE_URL = https://aws-api.sigmacomputing.com/v2
17+ EMBED_URL_BASE = https://app.sigmacomputing.com
18+
19+ # Sigma Organization and Client Credentials
20+ # Update these with your actual organization and client credentials
21+ ORG_SLUG =
22+ CLIENT_ID =
23+ SECRET =
24+
25+ # =============================================================================
26+ # APPLICATION CONFIGURATION
27+ # =============================================================================
28+ # Server configuration
29+ PORT = 3000
30+ DEBUG = true
31+ SESSION_LENGTH = 3600
32+
33+ # JWT Configuration
34+ JWT_AUDIENCE = https://sigmacomputing.com/iam
35+
36+ # Dashboard Builder Plugin Configuration
37+ PLUGIN_NAME = Dashboard Builder
38+ WORKBOOK_NAME = Custom_Dashboard
39+
40+ # =============================================================================
41+ # USERS
42+ # =============================================================================
43+ VIEW_EMAIL = view.plugin.user@example.com
44+ VIEW_ACCOUNT_TYPE = View
45+ VIEW_TEAMS = Embed_Users
46+ WORKSPACE_NAME = Embed_Users
47+
48+ # =============================================================================
49+ # PLUGIN-SPECIFIC CONFIGURATION
50+ # =============================================================================
51+ # Plugin embedding configuration
52+ HIDE_BOOKMARKS = true
53+ HIDE_FOLDER_NAVIGATION = true
54+ HIDE_MENU = true
55+ MENU_POSITION = none
56+ DISABLE_AUTO_REFRESH = false
57+ DISABLE_MOBILE_VIEW = false
58+ HIDE_PAGE_CONTROLS = true
59+ HIDE_RELOAD_BUTTON = false
60+ HIDE_TITLE = false
61+ HIDE_TOOLTIP = false
62+ HIDE_VIEW_SELECT = false
63+ LNG = en
64+ RESPONSIVE_HEIGHT = true
65+ THEME = light
0 commit comments