-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.env.example
More file actions
53 lines (44 loc) · 2.35 KB
/
.env.example
File metadata and controls
53 lines (44 loc) · 2.35 KB
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
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Auth0 Configuration
# Copy this file to .env and fill in your Auth0 credentials
################################################################################
# TOKEN SCRIPT CONFIGURATION (for scripts/get-auth0-token.sh)
################################################################################
# Your Auth0 domain (e.g., your-tenant.auth0.com)
# Find this in: Auth0 Dashboard > Applications > Your App > Settings > Domain
AUTH0_DOMAIN=your-tenant.auth0.com
# Your Auth0 Client ID
# Find this in: Auth0 Dashboard > Applications > Your App > Settings > Client ID
AUTH0_CLIENT_ID=your-client-id-here
# Your Auth0 Client Secret
# Find this in: Auth0 Dashboard > Applications > Your App > Settings > Client Secret
# IMPORTANT: Keep this secret! Never commit this file with real values to version control
AUTH0_CLIENT_SECRET=your-client-secret-here
# Your Auth0 API Audience/Identifier
# This is the identifier you set when creating your Auth0 API
# Find this in: Auth0 Dashboard > Applications > APIs > Your API > Identifier
# Example: https://solr-mcp-api
AUTH0_AUDIENCE=https://solr-mcp-api
################################################################################
# APPLICATION CONFIGURATION (for Solr MCP Server)
################################################################################
# OAuth2 Resource Server Configuration
# IMPORTANT: Must end with a trailing slash /
OAUTH2_ISSUER_URI=https://your-tenant.auth0.com/
# Profile Configuration
# Use 'http' profile to enable OAuth2 security (required for OAuth2)
# Use 'stdio' profile for standard input/output mode (no OAuth2)
PROFILES=http