23 lines
702 B
YAML
23 lines
702 B
YAML
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:
|
|
salesforce-oauth:
|
|
profiles:
|
|
default:
|
|
# OAuth Authentication Configuration
|
|
auth:
|
|
provider: salesforce
|
|
salesforce:
|
|
client_id: "${SALESFORCE_CLIENT_ID}"
|
|
client_secret: "${SALESFORCE_CLIENT_SECRET}"
|
|
scope: "api refresh_token openid profile email"
|
|
callback_path: "/salesforce/callback"
|
|
auth_url: "https://login.salesforce.com/services/oauth2/authorize"
|
|
token_url: "https://login.salesforce.com/services/oauth2/token"
|