| 
 | 1 | +# =============================================  | 
 | 2 | +# STAC Manager Environment Example File  | 
 | 3 | +# =============================================  | 
 | 4 | +# IMPORTANT: DO NOT MODIFY THIS FILE!  | 
 | 5 | +# Instead, create a copy named '.env' and modify that file.  | 
 | 6 | +# This example file serves as a template and documentation.  | 
 | 7 | +# =============================================  | 
 | 8 | + | 
 | 9 | +# =================  | 
 | 10 | +# App Configuration  | 
 | 11 | +# =================  | 
 | 12 | + | 
 | 13 | +# The title of the application shown in browser tab and headers  | 
 | 14 | +APP_TITLE=STAC Manager  | 
 | 15 | + | 
 | 16 | +# A brief description of the application for metadata purposes  | 
 | 17 | +APP_DESCRIPTION=Plugin based STAC editor  | 
 | 18 | + | 
 | 19 | +# The base URL where the app is being served from  | 
 | 20 | +# DO NOT set this in the .env file. Set it as an environment variable before building.  | 
 | 21 | +# See the README for instructions.  | 
 | 22 | +# PUBLIC_URL= Do not set here  | 
 | 23 | + | 
 | 24 | +# ===============  | 
 | 25 | +# API Integration  | 
 | 26 | +# ===============  | 
 | 27 | + | 
 | 28 | +# URL of the STAC Browser instance (optional)  | 
 | 29 | +# If not set, will default to Radiant Earth's STAC Browser  | 
 | 30 | +REACT_APP_STAC_BROWSER=  | 
 | 31 | + | 
 | 32 | +# URL of the STAC API endpoint (required)  | 
 | 33 | +# This is the API the app will interact with for STAC operations  | 
 | 34 | +REACT_APP_STAC_API=  | 
 | 35 | + | 
 | 36 | +# ====================  | 
 | 37 | +# Keycloak Auth Config  | 
 | 38 | +# ====================  | 
 | 39 | +# If not provided, authentication will be disabled.  | 
 | 40 | + | 
 | 41 | +# Base URL of the Keycloak server  | 
 | 42 | +REACT_APP_KEYCLOAK_URL=  | 
 | 43 | + | 
 | 44 | +# Client ID registered in Keycloak  | 
 | 45 | +REACT_APP_KEYCLOAK_CLIENT_ID=  | 
 | 46 | + | 
 | 47 | +# Realm name in Keycloak  | 
 | 48 | +REACT_APP_KEYCLOAK_REALM=  | 
 | 49 | + | 
 | 50 | +# =================  | 
 | 51 | +# Theme Customization  | 
 | 52 | +# =================  | 
 | 53 | + | 
 | 54 | +# Primary color for the application theme (hex color code)  | 
 | 55 | +# Default: #6A5ACD (SlateBlue)  | 
 | 56 | +# REACT_APP_THEME_PRIMARY_COLOR='#6A5ACD'  | 
 | 57 | + | 
 | 58 | +# Secondary color for the application theme (hex color code)  | 
 | 59 | +# Default: #048A81 (Teal)  | 
 | 60 | +# REACT_APP_THEME_SECONDARY_COLOR='#048A81'  | 
0 commit comments