We use cookies on this site to enhance your user experience
By clicking the Accept button, you agree to us doing so. More info on our cookie policy
We use cookies on this site to enhance your user experience
By clicking the Accept button, you agree to us doing so. More info on our cookie policy
Git Repository Configuration
Recommended Structure:
PBIP_Fabric_Reference_Guide/
├── .github/
│ └── workflows/
│ └── fabric-deployment.yml # CI/CD workflow
├── scripts/
│ └── deploy_all.py # Deployment script
├── fabric/
│ └── workspace/ # Synced .pbip files
│ ├── [ReportName].Report/
│ ├── [ReportName].SemanticModel/
│ └── README.md
├── docs/
│ └── deployment-guide.md # Documentation
├── .gitignore # Security configurations
└── README.md # This guide
Branch Mapping:
Git Branch ↔ Fabric Workspace
─────────────────────────────────────────────────
main ↔ FABRIC-CATALYST-GH-DEV
feature/[feature-name] ↔ FABRIC-CATALYST-GH-FEATURE
Development Workflow:
feature/[name]
→ Feature Workspacemain
branch (via PR)main
branch → DEV → UAT → PROD❌ Never Commit These to Git:
✅ Secure Alternatives:
Option 1: Template Configuration
// config/template-config.json
{
"environment": "TEMPLATE",
"workspace": "PROJECT-NAME-{ENVIRONMENT}",
"dataSourceSettings": {
"serverName": "{SERVER-ENDPOINT-PLACEHOLDER}",
"databaseName": "{DATABASE-NAME-PLACEHOLDER}"
}
}
Option 2: Fabric-Native Parameter Management
📝 This Guide Uses: Option 2 (Fabric-Native) for maximum security