Files
runtipi/apps/erp-integration/config.json

77 lines
2.1 KiB
JSON

{
"name": "SAP Migration Dashboard",
"id": "erp-integration",
"available": true,
"short_desc": "SAP S/4HANA migration planning and tracking dashboard with AI assistance",
"author": "alexz",
"port": 8001,
"categories": [
"utilities",
"development"
],
"tipi_version": 1,
"version": "1.0.0",
"source": "https://gits.alexzaw.dev/alexz/ERP-Integration",
"website": "https://gits.alexzaw.dev/alexz/ERP-Integration",
"exposable": true,
"dynamic_config": true,
"supported_architectures": [
"arm64",
"amd64"
],
"min_tipi_version": "4.0.0",
"created_at": 1742342400000,
"updated_at": 1742342400000,
"form_fields": [
{
"type": "password",
"label": "Anthropic API Key",
"hint": "Your Anthropic API key for AI chat features",
"required": true,
"env_variable": "ANTHROPIC_API_KEY",
"min": 10,
"max": 200
},
{
"type": "text",
"label": "AI Model",
"hint": "Claude model to use for AI features",
"required": false,
"default": "claude-opus-4-6",
"env_variable": "ANTHROPIC_MODEL"
},
{
"type": "boolean",
"label": "Enable AI Chat",
"hint": "Enable the AI-powered agent chat feature",
"required": false,
"default": false,
"env_variable": "AGENT_CHAT_ENABLED"
},
{
"type": "text",
"label": "CORS Origin",
"hint": "Allowed CORS origins",
"required": false,
"default": "*",
"env_variable": "CORS_ORIGIN"
},
{
"type": "text",
"label": "MCP API Base URL",
"hint": "Base URL for the MCP API server",
"required": false,
"default": "http://localhost:2009",
"env_variable": "MCP_API_BASE_URL"
},
{
"type": "text",
"label": "SharePoint Base URL",
"hint": "SharePoint/OneDrive URL for Integration Planning documents",
"required": false,
"default": "https://minicircuits-my.sharepoint.com/personal/alex_zaw_minicircuits_com1/_layouts/15/onedrive.aspx?id=%2Fpersonal%2Falex%5Fzaw%5Fminicircuits%5Fcom1%2FDocuments%2FIntegration%20Planning%2F",
"env_variable": "SHAREPOINT_BASE_URL"
}
]
}