@khester/create-dynamics-app 1.1.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +74 -0
- package/dist/artifacts/registry.d.ts +18 -0
- package/dist/artifacts/registry.d.ts.map +1 -0
- package/dist/artifacts/registry.js +340 -0
- package/dist/artifacts/registry.js.map +1 -0
- package/dist/artifacts/types.d.ts +122 -0
- package/dist/artifacts/types.d.ts.map +1 -0
- package/dist/artifacts/types.js +7 -0
- package/dist/artifacts/types.js.map +1 -0
- package/dist/artifacts/validators.d.ts +16 -0
- package/dist/artifacts/validators.d.ts.map +1 -0
- package/dist/artifacts/validators.js +45 -0
- package/dist/artifacts/validators.js.map +1 -0
- package/dist/fromDesign.d.ts +5 -0
- package/dist/fromDesign.d.ts.map +1 -0
- package/dist/fromDesign.js +98 -0
- package/dist/fromDesign.js.map +1 -0
- package/dist/index.js +129 -177
- package/dist/index.js.map +1 -1
- package/dist/injectDevTools.d.ts +28 -0
- package/dist/injectDevTools.d.ts.map +1 -0
- package/dist/injectDevTools.js +148 -0
- package/dist/injectDevTools.js.map +1 -0
- package/dist/scaffold.d.ts +48 -0
- package/dist/scaffold.d.ts.map +1 -0
- package/dist/scaffold.js +180 -0
- package/dist/scaffold.js.map +1 -0
- package/dist/templatePlan.d.ts +3 -0
- package/dist/templatePlan.d.ts.map +1 -0
- package/dist/templatePlan.js +43 -0
- package/dist/templatePlan.js.map +1 -0
- package/dist/utils/copyTemplate.d.ts +13 -1
- package/dist/utils/copyTemplate.d.ts.map +1 -1
- package/dist/utils/copyTemplate.js +98 -4
- package/dist/utils/copyTemplate.js.map +1 -1
- package/dist/utils/updatePackageJson.d.ts +11 -1
- package/dist/utils/updatePackageJson.d.ts.map +1 -1
- package/dist/utils/updatePackageJson.js +12 -10
- package/dist/utils/updatePackageJson.js.map +1 -1
- package/package.json +10 -7
- package/templates/_shared/dev-tools/auth/get-token.js +72 -0
- package/templates/_shared/dev-tools/dev/mock-xrm.js +42 -0
- package/templates/_shared/dev-tools/metadata-sync/index.js +152 -0
- package/templates/_shared/dev-tools/smoke/test-retrieve.js +44 -0
- package/templates/dialog-form/README.md +27 -0
- package/templates/dialog-form/_variants/App.v8.tsx +39 -0
- package/templates/dialog-form/_variants/App.v9.tsx +41 -0
- package/templates/dialog-form/gitignore +5 -0
- package/templates/dialog-form/package.json +27 -0
- package/templates/dialog-form/public/index.html +11 -0
- package/templates/dialog-form/src/index.tsx +10 -0
- package/templates/dialog-form/src/services/dataverse.ts +30 -0
- package/templates/dialog-form/tsconfig.json +15 -0
- package/templates/dialog-form/webpack.config.js +17 -0
- package/templates/grid-customizer/README.md +28 -0
- package/templates/grid-customizer/gitignore +4 -0
- package/templates/grid-customizer/package.json +25 -0
- package/templates/grid-customizer/src/GridCustomizer.ts +28 -0
- package/templates/grid-customizer/src/cell-renderers.tsx +35 -0
- package/templates/grid-customizer/src/index.ts +4 -0
- package/templates/grid-customizer/src/types/grid-types.ts +30 -0
- package/templates/grid-customizer/src/utils/color-utils.ts +24 -0
- package/templates/grid-customizer/tsconfig.json +15 -0
- package/templates/grid-customizer/webpack.config.js +17 -0
- package/templates/pcf-dataset/ControlManifest.Input.xml +16 -0
- package/templates/pcf-dataset/README.md +21 -0
- package/templates/pcf-dataset/gitignore +5 -0
- package/templates/pcf-dataset/index.ts +39 -0
- package/templates/pcf-dataset/package.json +30 -0
- package/templates/pcf-dataset/strings/{{componentName}}.1033.resx +47 -0
- package/templates/pcf-dataset/tsconfig.json +8 -0
- package/templates/pcf-dataset/{{componentName}}Component.tsx +39 -0
- package/templates/pcf-field/ControlManifest.Input.xml +17 -0
- package/templates/pcf-field/README.md +95 -0
- package/templates/pcf-field/_variants/ValueInput.boolean.tsx +24 -0
- package/templates/pcf-field/_variants/ValueInput.date.tsx +27 -0
- package/templates/pcf-field/_variants/ValueInput.number.tsx +35 -0
- package/templates/pcf-field/_variants/ValueInput.text.tsx +27 -0
- package/templates/pcf-field/gitignore +5 -0
- package/templates/pcf-field/index.ts +61 -0
- package/templates/pcf-field/package.json +30 -0
- package/templates/pcf-field/strings/{{componentName}}.1033.resx +47 -0
- package/templates/pcf-field/tsconfig.json +8 -0
- package/templates/pcf-field/{{componentName}}Component.tsx +35 -0
- package/templates/power-pages-starter/gitignore +5 -0
- package/templates/react-custom-page/gitignore +5 -0
- package/templates/{dynamics-365-starter → react-custom-page}/package.json +3 -3
- package/templates/react-custom-page/tools/metadata-sync/index.js +152 -0
- package/templates/static-web-app/README.md +36 -0
- package/templates/static-web-app/_variants/App.v8.tsx +32 -0
- package/templates/static-web-app/_variants/App.v9.tsx +31 -0
- package/templates/static-web-app/api/host.json +12 -0
- package/templates/static-web-app/api/package.json +19 -0
- package/templates/static-web-app/api/src/functions/hello.ts +16 -0
- package/templates/static-web-app/api/tsconfig.json +14 -0
- package/templates/static-web-app/frontend/index.html +12 -0
- package/templates/static-web-app/frontend/package.json +23 -0
- package/templates/static-web-app/frontend/src/index.tsx +8 -0
- package/templates/static-web-app/frontend/tsconfig.json +16 -0
- package/templates/static-web-app/frontend/vite.config.ts +13 -0
- package/templates/static-web-app/gitignore +8 -0
- package/templates/static-web-app/package.json +15 -0
- package/templates/static-web-app/staticwebapp.config.json +7 -0
- package/templates/teams-app/README.md +27 -0
- package/templates/teams-app/_variants/graph.off.ts +7 -0
- package/templates/teams-app/_variants/graph.on.ts +22 -0
- package/templates/teams-app/appPackage/manifest.json +26 -0
- package/templates/teams-app/gitignore +5 -0
- package/templates/teams-app/index.html +12 -0
- package/templates/teams-app/package.json +26 -0
- package/templates/teams-app/src/App.tsx +25 -0
- package/templates/teams-app/src/index.tsx +8 -0
- package/templates/teams-app/tsconfig.json +16 -0
- package/templates/teams-app/vite.config.ts +9 -0
- package/templates/web-resource/README.md +39 -0
- package/templates/web-resource/_variants/App.v8.tsx +29 -0
- package/templates/web-resource/_variants/App.v9.tsx +28 -0
- package/templates/web-resource/gitignore +5 -0
- package/templates/web-resource/package.json +27 -0
- package/templates/web-resource/public/index.html +11 -0
- package/templates/web-resource/src/index.tsx +10 -0
- package/templates/web-resource/src/services/dataverse.ts +30 -0
- package/templates/web-resource/tsconfig.json +15 -0
- package/templates/web-resource/webpack.config.js +17 -0
- package/dist/utils/consultingHelpers.d.ts +0 -13
- package/dist/utils/consultingHelpers.d.ts.map +0 -1
- package/dist/utils/consultingHelpers.js +0 -569
- package/dist/utils/consultingHelpers.js.map +0 -1
- package/templates/dynamics-365-starter/INTEGRATION_TEST_RESULTS.md +0 -302
- package/templates/dynamics-365-starter/PHASE_4_COMPLETION_SUMMARY.md +0 -305
- package/templates/dynamics-365-starter/deployment/QUICKSTART-MAC.md +0 -507
- package/templates/dynamics-365-starter/deployment/QUICKSTART-WINDOWS.md +0 -372
- package/templates/dynamics-365-starter/deployment/pipelines/README.md +0 -375
- package/templates/dynamics-365-starter/deployment/pipelines/azure-pipelines.yml +0 -330
- package/templates/dynamics-365-starter/deployment/pipelines/github-actions.yml +0 -422
- package/templates/dynamics-365-starter/deployment/pipelines/jenkins.groovy +0 -636
- package/templates/dynamics-365-starter/deployment/scripts/deploy.ps1 +0 -417
- package/templates/dynamics-365-starter/deployment/scripts/deploy.sh +0 -582
- package/templates/dynamics-365-starter/deployment/scripts/team-onboarding.ps1 +0 -486
- package/templates/dynamics-365-starter/deployment/scripts/team-onboarding.sh +0 -567
- package/templates/dynamics-365-starter/deployment/scripts/validate-setup.ps1 +0 -703
- package/templates/dynamics-365-starter/deployment/scripts/validate-setup.sh +0 -671
- package/templates/dynamics-365-starter/docs/team-standards/README.md +0 -273
- package/templates/dynamics-365-starter/docs/team-standards/client-onboarding.md +0 -577
- package/templates/dynamics-365-starter/docs/team-standards/code-review-checklist.md +0 -359
- package/templates/dynamics-365-starter/docs/team-standards/coding-standards.md +0 -700
- package/templates/dynamics-365-starter/docs/team-standards/cross-platform-team-guide.md +0 -736
- package/templates/dynamics-365-starter/docs/team-standards/development-workflows.md +0 -727
- package/templates/dynamics-365-starter/docs/troubleshooting/common-errors.md +0 -758
- package/templates/dynamics-365-starter/docs/troubleshooting/platform-specific-issues.md +0 -878
- package/templates/dynamics-365-starter/src/client-project-template/README.md +0 -234
- package/templates/dynamics-365-starter/src/client-project-template/config/client.template.json +0 -114
- package/templates/dynamics-365-starter/src/client-project-template/config/environments/template.json +0 -186
- package/templates/dynamics-365-starter/src/client-project-template/scripts/client-setup.js +0 -667
- package/templates/dynamics-365-starter/src/examples/README.md +0 -52
- package/templates/dynamics-365-starter/src/examples/component-examples/opportunity-management.tsx +0 -625
- package/templates/dynamics-365-starter/src/examples/entity-examples/opportunity-model.ts +0 -545
- package/templates/dynamics-365-starter/src/examples/integration-examples/custom-pcf-wrapper.tsx +0 -722
- package/templates/dynamics-365-starter/src/examples/workflow-examples/sales-workflow.ts +0 -662
- package/templates/dynamics-365-starter/src/page-templates/EntityDashboard.tsx +0 -519
- package/templates/dynamics-365-starter/src/page-templates/EntityDetailPage.tsx +0 -456
- package/templates/dynamics-365-starter/src/page-templates/EntityListPage.tsx +0 -406
- package/templates/dynamics-365-starter/src/page-templates/RelatedEntitiesPage.tsx +0 -578
- package/templates/dynamics-365-starter/src/page-templates/SearchPage.tsx +0 -629
- package/templates/dynamics-365-starter/tools/entity-generator/index.js +0 -168
- package/templates/dynamics-365-starter/tools/entity-generator/templates/constants.template.ts +0 -124
- package/templates/dynamics-365-starter/tools/entity-generator/templates/form.template.css +0 -283
- package/templates/dynamics-365-starter/tools/entity-generator/templates/form.template.tsx +0 -275
- package/templates/dynamics-365-starter/tools/entity-generator/templates/management.template.css +0 -204
- package/templates/dynamics-365-starter/tools/entity-generator/templates/management.template.tsx +0 -413
- package/templates/dynamics-365-starter/tools/entity-generator/templates/model.template.ts +0 -250
- package/templates/dynamics-365-starter/tools/metadata-sync/d365-client.js +0 -410
- package/templates/dynamics-365-starter/tools/metadata-sync/index.js +0 -512
- package/templates/dynamics-365-starter/tools/metadata-sync/type-generator.js +0 -675
- /package/templates/{dynamics-365-starter → react-custom-page}/README.md +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/deployment/README.md +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/docs/ARCHITECTURE_OVERVIEW.md +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/docs/BEST_PRACTICES.md +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/docs/MIGRATION_GUIDE.md +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/public/index.html +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/scripts/custom-build.js +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/components/AccountForm.css +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/components/AccountForm.tsx +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/components/AccountManagement.css +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/components/AccountManagement.tsx +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/components/ContactForm.css +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/components/ContactForm.tsx +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/components/ContactManagement.css +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/components/ContactManagement.tsx +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/components/Logging/LogDialog.tsx +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/components/Logging/LoggingContext.tsx +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/components/Logging/LoggingDebugPanel.css +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/components/Logging/LoggingDebugPanel.tsx +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/components/Logging/LoggingProvider.tsx +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/components/Logging/logger.ts +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/constants/account.ts +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/constants/contact.ts +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/index.tsx +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/models/Account.ts +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/models/BaseEntity.ts +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/models/Contact.ts +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/pcf/ContactControlWrapper.tsx +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/pcf/MultiEntityControlWrapper.tsx +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/providers/DynamicsProvider.tsx +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/services/MockApiService.ts +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/services/ServiceFactory.ts +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/services/XrmApiService.ts +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/src/styles/index.css +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/tsconfig.json +0 -0
- /package/templates/{dynamics-365-starter → react-custom-page}/webpack.config.js +0 -0
|
@@ -1,273 +0,0 @@
|
|
|
1
|
-
# Developer Team Standards
|
|
2
|
-
|
|
3
|
-
This directory contains standards, guidelines, and best practices for the development team working
|
|
4
|
-
on Dynamics 365 consulting projects.
|
|
5
|
-
|
|
6
|
-
## Table of Contents
|
|
7
|
-
|
|
8
|
-
1. [Coding Standards](./coding-standards.md) - Code style, naming conventions, and structure
|
|
9
|
-
2. [Entity Development Guidelines](./entity-development.md) - Standards for entity model development
|
|
10
|
-
3. [Code Review Checklist](./code-review-checklist.md) - Comprehensive review checklist
|
|
11
|
-
4. [Client Onboarding Procedures](./client-onboarding.md) - Process for new client projects
|
|
12
|
-
5. [Quality Assurance Standards](./quality-assurance.md) - Testing and QA requirements
|
|
13
|
-
6. [Deployment Best Practices](./deployment-practices.md) - Deployment procedures and standards
|
|
14
|
-
7. [Security Guidelines](./security-guidelines.md) - Security requirements and best practices
|
|
15
|
-
8. [Performance Standards](./performance-standards.md) - Performance optimization guidelines
|
|
16
|
-
9. [Documentation Standards](./documentation-standards.md) - Documentation requirements
|
|
17
|
-
10. [Team Workflows](./team-workflows.md) - Development team processes
|
|
18
|
-
|
|
19
|
-
## Quick Reference
|
|
20
|
-
|
|
21
|
-
### Before Starting Development
|
|
22
|
-
|
|
23
|
-
- [ ] Review client requirements and configuration
|
|
24
|
-
- [ ] Set up development environment
|
|
25
|
-
- [ ] Understand entity relationships and business logic
|
|
26
|
-
- [ ] Review existing codebase and patterns
|
|
27
|
-
|
|
28
|
-
### During Development
|
|
29
|
-
|
|
30
|
-
- [ ] Follow coding standards and naming conventions
|
|
31
|
-
- [ ] Write comprehensive unit tests
|
|
32
|
-
- [ ] Document all public APIs and complex logic
|
|
33
|
-
- [ ] Use the entity generator for new entities
|
|
34
|
-
- [ ] Implement proper error handling and logging
|
|
35
|
-
|
|
36
|
-
### Before Code Review
|
|
37
|
-
|
|
38
|
-
- [ ] Run all quality checks: `npm run quality`
|
|
39
|
-
- [ ] Ensure all tests pass
|
|
40
|
-
- [ ] Update documentation if needed
|
|
41
|
-
- [ ] Test in development environment
|
|
42
|
-
- [ ] Verify client-specific requirements are met
|
|
43
|
-
|
|
44
|
-
### Before Deployment
|
|
45
|
-
|
|
46
|
-
- [ ] Complete code review process
|
|
47
|
-
- [ ] Verify deployment checklist
|
|
48
|
-
- [ ] Test in staging environment
|
|
49
|
-
- [ ] Get client approval
|
|
50
|
-
- [ ] Execute deployment plan
|
|
51
|
-
|
|
52
|
-
## Tools and Automation
|
|
53
|
-
|
|
54
|
-
### Available Scripts
|
|
55
|
-
|
|
56
|
-
```bash
|
|
57
|
-
# Quality checks
|
|
58
|
-
npm run quality # Run all quality checks
|
|
59
|
-
npm run lint # Code linting
|
|
60
|
-
npm run typecheck # TypeScript type checking
|
|
61
|
-
npm run test # Run unit tests
|
|
62
|
-
|
|
63
|
-
# Code generation
|
|
64
|
-
npm run generate:entity -- --entity customentity --display-name "Custom Entity"
|
|
65
|
-
|
|
66
|
-
# Building
|
|
67
|
-
npm run build:dev # Development build
|
|
68
|
-
npm run build:prod # Production build
|
|
69
|
-
npm run build:d365 # Dynamics 365 optimized build
|
|
70
|
-
|
|
71
|
-
# Development
|
|
72
|
-
npm run start # Start development server
|
|
73
|
-
npm run dev # Development mode with hot reload
|
|
74
|
-
```
|
|
75
|
-
|
|
76
|
-
### Automated Quality Gates
|
|
77
|
-
|
|
78
|
-
All projects include automated quality gates:
|
|
79
|
-
|
|
80
|
-
- **ESLint** - Code style and potential error detection
|
|
81
|
-
- **TypeScript** - Type safety and compile-time error checking
|
|
82
|
-
- **Prettier** - Code formatting consistency
|
|
83
|
-
- **Jest** - Unit testing framework
|
|
84
|
-
- **Husky** - Git hooks for pre-commit quality checks
|
|
85
|
-
|
|
86
|
-
## Team Structure
|
|
87
|
-
|
|
88
|
-
### Roles and Responsibilities
|
|
89
|
-
|
|
90
|
-
**Technical Lead**
|
|
91
|
-
|
|
92
|
-
- Architecture decisions
|
|
93
|
-
- Code review oversight
|
|
94
|
-
- Client technical discussions
|
|
95
|
-
- Team mentoring
|
|
96
|
-
|
|
97
|
-
**Senior Developers**
|
|
98
|
-
|
|
99
|
-
- Feature implementation
|
|
100
|
-
- Code reviews
|
|
101
|
-
- Junior developer mentoring
|
|
102
|
-
- Technical documentation
|
|
103
|
-
|
|
104
|
-
**Developers**
|
|
105
|
-
|
|
106
|
-
- Feature development
|
|
107
|
-
- Unit testing
|
|
108
|
-
- Bug fixes
|
|
109
|
-
- Documentation updates
|
|
110
|
-
|
|
111
|
-
**QA Engineer**
|
|
112
|
-
|
|
113
|
-
- Test plan creation
|
|
114
|
-
- Manual testing
|
|
115
|
-
- Automated test development
|
|
116
|
-
- Client acceptance testing
|
|
117
|
-
|
|
118
|
-
**DevOps Engineer**
|
|
119
|
-
|
|
120
|
-
- Deployment automation
|
|
121
|
-
- Environment management
|
|
122
|
-
- CI/CD pipeline maintenance
|
|
123
|
-
- Infrastructure monitoring
|
|
124
|
-
|
|
125
|
-
## Communication Standards
|
|
126
|
-
|
|
127
|
-
### Daily Standups
|
|
128
|
-
|
|
129
|
-
- Progress since last standup
|
|
130
|
-
- Plans for today
|
|
131
|
-
- Any blockers or issues
|
|
132
|
-
- Client-specific updates
|
|
133
|
-
|
|
134
|
-
### Code Reviews
|
|
135
|
-
|
|
136
|
-
- All code must be reviewed by at least one senior developer
|
|
137
|
-
- Use GitHub pull request process
|
|
138
|
-
- Follow code review checklist
|
|
139
|
-
- Provide constructive feedback
|
|
140
|
-
|
|
141
|
-
### Client Communication
|
|
142
|
-
|
|
143
|
-
- Weekly status updates
|
|
144
|
-
- Demo sessions for new features
|
|
145
|
-
- Issue escalation procedures
|
|
146
|
-
- Change request processes
|
|
147
|
-
|
|
148
|
-
## Emergency Procedures
|
|
149
|
-
|
|
150
|
-
### Production Issues
|
|
151
|
-
|
|
152
|
-
1. Immediately notify Technical Lead
|
|
153
|
-
2. Create incident ticket
|
|
154
|
-
3. Assess impact and severity
|
|
155
|
-
4. Implement hotfix if needed
|
|
156
|
-
5. Communicate with client
|
|
157
|
-
6. Post-incident review
|
|
158
|
-
|
|
159
|
-
### Data Loss Prevention
|
|
160
|
-
|
|
161
|
-
- Daily automated backups
|
|
162
|
-
- Point-in-time recovery capability
|
|
163
|
-
- Data validation procedures
|
|
164
|
-
- Access control and audit logging
|
|
165
|
-
|
|
166
|
-
## Training and Development
|
|
167
|
-
|
|
168
|
-
### New Team Member Onboarding
|
|
169
|
-
|
|
170
|
-
1. Environment setup and access
|
|
171
|
-
2. Codebase walkthrough
|
|
172
|
-
3. Client background and requirements
|
|
173
|
-
4. Pair programming session
|
|
174
|
-
5. First feature assignment with mentoring
|
|
175
|
-
|
|
176
|
-
### Continuous Learning
|
|
177
|
-
|
|
178
|
-
- Monthly tech talks
|
|
179
|
-
- Code kata sessions
|
|
180
|
-
- Conference attendance budget
|
|
181
|
-
- Certification support
|
|
182
|
-
- Knowledge sharing sessions
|
|
183
|
-
|
|
184
|
-
## Metrics and KPIs
|
|
185
|
-
|
|
186
|
-
### Code Quality Metrics
|
|
187
|
-
|
|
188
|
-
- Code coverage percentage (target: >80%)
|
|
189
|
-
- Technical debt ratio
|
|
190
|
-
- Bug report rate
|
|
191
|
-
- Code review cycle time
|
|
192
|
-
|
|
193
|
-
### Client Satisfaction Metrics
|
|
194
|
-
|
|
195
|
-
- Feature delivery on time
|
|
196
|
-
- Bug resolution time
|
|
197
|
-
- Client feedback scores
|
|
198
|
-
- Change request turnaround
|
|
199
|
-
|
|
200
|
-
### Team Performance Metrics
|
|
201
|
-
|
|
202
|
-
- Sprint velocity
|
|
203
|
-
- Burndown accuracy
|
|
204
|
-
- Code review participation
|
|
205
|
-
- Knowledge sharing activities
|
|
206
|
-
|
|
207
|
-
## Resources
|
|
208
|
-
|
|
209
|
-
### Internal Resources
|
|
210
|
-
|
|
211
|
-
- [Internal Wiki](https://wiki.company.com/dynamics365)
|
|
212
|
-
- [Code Templates](https://github.com/company/dynamics-templates)
|
|
213
|
-
- [Best Practices Repository](https://github.com/company/best-practices)
|
|
214
|
-
|
|
215
|
-
### External Resources
|
|
216
|
-
|
|
217
|
-
- [Microsoft Dynamics 365 Documentation](https://docs.microsoft.com/dynamics365/)
|
|
218
|
-
- [Power Platform Documentation](https://docs.microsoft.com/power-platform/)
|
|
219
|
-
- [TypeScript Documentation](https://www.typescriptlang.org/docs/)
|
|
220
|
-
- [React Documentation](https://reactjs.org/docs/)
|
|
221
|
-
- [Fluent UI Documentation](https://developer.microsoft.com/fluentui/)
|
|
222
|
-
|
|
223
|
-
## Getting Help
|
|
224
|
-
|
|
225
|
-
### Technical Issues
|
|
226
|
-
|
|
227
|
-
1. Check documentation and existing solutions
|
|
228
|
-
2. Ask team members in Slack
|
|
229
|
-
3. Escalate to Technical Lead if needed
|
|
230
|
-
4. Create knowledge base entry for solution
|
|
231
|
-
|
|
232
|
-
### Client Issues
|
|
233
|
-
|
|
234
|
-
1. Review client requirements and SOW
|
|
235
|
-
2. Discuss with Account Manager
|
|
236
|
-
3. Schedule client meeting if needed
|
|
237
|
-
4. Document resolution for future reference
|
|
238
|
-
|
|
239
|
-
## Version Control
|
|
240
|
-
|
|
241
|
-
### Branch Naming
|
|
242
|
-
|
|
243
|
-
- `feature/client-feature-name` - New features
|
|
244
|
-
- `bugfix/issue-description` - Bug fixes
|
|
245
|
-
- `hotfix/critical-issue` - Emergency fixes
|
|
246
|
-
- `release/version-number` - Release branches
|
|
247
|
-
|
|
248
|
-
### Commit Messages
|
|
249
|
-
|
|
250
|
-
Follow conventional commit format:
|
|
251
|
-
|
|
252
|
-
```
|
|
253
|
-
type(scope): description
|
|
254
|
-
|
|
255
|
-
Examples:
|
|
256
|
-
feat(entities): add Opportunity entity with validation
|
|
257
|
-
fix(auth): resolve token refresh issue
|
|
258
|
-
docs(readme): update deployment instructions
|
|
259
|
-
```
|
|
260
|
-
|
|
261
|
-
### Release Process
|
|
262
|
-
|
|
263
|
-
1. Create release branch
|
|
264
|
-
2. Update version numbers
|
|
265
|
-
3. Generate changelog
|
|
266
|
-
4. Test in staging environment
|
|
267
|
-
5. Deploy to production
|
|
268
|
-
6. Tag release
|
|
269
|
-
7. Merge to main branch
|
|
270
|
-
|
|
271
|
-
---
|
|
272
|
-
|
|
273
|
-
For questions about these standards, contact the Technical Lead or refer to the team wiki.
|