Initial commit
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
mxcp: 1
|
||||
transport:
|
||||
http:
|
||||
port: 8000
|
||||
host: 0.0.0.0
|
||||
# Set base_url to your server's public URL for production
|
||||
base_url: http://localhost:8000
|
||||
|
||||
projects:
|
||||
jira-oauth-demo:
|
||||
profiles:
|
||||
dev:
|
||||
# OAuth Authentication Configuration
|
||||
auth:
|
||||
provider: atlassian
|
||||
clients:
|
||||
- client_id: "${ATLASSIAN_CLIENT_ID}"
|
||||
client_secret: "${ATLASSIAN_CLIENT_SECRET}"
|
||||
name: "MXCP Jira OAuth Integration"
|
||||
redirect_uris:
|
||||
# For production, use your actual domain (must match base_url above)
|
||||
- "http://localhost:8000/atlassian/callback"
|
||||
scopes:
|
||||
- "mxcp:access"
|
||||
atlassian:
|
||||
client_id: "${ATLASSIAN_CLIENT_ID}"
|
||||
client_secret: "${ATLASSIAN_CLIENT_SECRET}"
|
||||
scope: "read:me read:jira-work read:jira-user offline_access"
|
||||
callback_path: "/atlassian/callback"
|
||||
auth_url: "https://auth.atlassian.com/authorize"
|
||||
token_url: "https://auth.atlassian.com/oauth/token"
|
||||
|
||||
# Plugin Configuration (minimal configuration - uses OAuth context!)
|
||||
plugin:
|
||||
config:
|
||||
jira_oauth: {} # Named 'jira_oauth' here, but UDFs use 'jira' suffix from mxcp-site.yml
|
||||
Reference in New Issue
Block a user