-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappmodlab.json
More file actions
1407 lines (1407 loc) · 40.7 KB
/
Copy pathappmodlab.json
File metadata and controls
1407 lines (1407 loc) · 40.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"title": "Contoso University .NET 4.8 → 10 Modernization with Spec2Cloud",
"description": "Modernize a legacy ASP.NET MVC 5 (.NET 4.8) app to .NET 10 using Spec-Driven Development with Spec2Cloud and GitHub Copilot.",
"authors": [
"marconsilva"
],
"category": "Code Modernization",
"industry": "Education",
"services": [
"Azure App Service"
],
"languages": [
".NET"
],
"frameworks": [
"ASP.NET MVC 5",
"Entity Framework Core"
],
"modernizationTools": [
"Spec2Cloud"
],
"tags": [
"migration",
"legacy",
"brownfield",
"dotnet",
"university",
"lab"
],
"extensions": [
"github.copilot"
],
"thumbnail": "https://raw.githubusercontent.com/EmeaAppGbb/AppModLab-dotnet-4to10-contosouniversity-spec2cloud/refs/heads/main/img/repo-banner.png",
"video": "",
"version": "",
"repoUrl": "https://github.com/EmeaAppGbb/AppModLab-dotnet-4to10-contosouniversity-spec2cloud",
"repoOwner": "EmeaAppGbb",
"repoName": "AppModLab-dotnet-4to10-contosouniversity-spec2cloud"
},
{
"title": "Assets Manager Java 8→21 Modernization with Spec2Cloud",
"description": "Modernize a Java 8 Spring Boot app from AWS to Azure (Java 21, Spring Boot 3.x, Blob Storage, Service Bus) using Spec2Cloud & Copilot.",
"authors": [
"marconsilva"
],
"category": "Code Modernization",
"industry": "Cross-Industry",
"services": [
"Azure Blob Storage",
"Azure Service Bus",
"Azure Database for PostgreSQL"
],
"languages": [
"Java"
],
"frameworks": [],
"modernizationTools": [
"Spec2Cloud"
],
"tags": [
"java-modernization",
"spring-boot",
"aws-to-azure",
"spec-driven-development",
"cloud-migration"
],
"extensions": [],
"thumbnail": "https://raw.githubusercontent.com/EmeaAppGbb/AppModLab-java-8to21-AssetsManager-spec2cloud/refs/heads/main/img/repo-banner.png",
"video": "",
"version": "",
"repoUrl": "https://github.com/EmeaAppGbb/AppModLab-java-8to21-AssetsManager-spec2cloud",
"repoOwner": "EmeaAppGbb",
"repoName": "AppModLab-java-8to21-AssetsManager-spec2cloud"
},
{
"title": "HackManager Node 16→22 Modernization with Spec2Cloud",
"description": "Modernize a legacy Node.js 16 hackathon app to Node.js 22 using Spec2Cloud and GitHub Copilot, deploy to Azure App Service.",
"authors": [
"marconsilva"
],
"category": "Code Modernization",
"industry": "Cross-Industry",
"services": [
"Azure App Service"
],
"languages": [
"JavaScript"
],
"frameworks": [
"Express"
],
"modernizationTools": [
"Spec2Cloud"
],
"tags": [
"Node.js",
"Spec-Driven Development",
"Node 16",
"Node 22",
"ESM",
"Hackathon",
"Brownfield"
],
"extensions": [],
"thumbnail": "https://raw.githubusercontent.com/EmeaAppGbb/AppModLab-node-16to22-HackManager-spec2cloud/refs/heads/main/img/repo-banner.png",
"video": "",
"version": "",
"repoUrl": "https://github.com/EmeaAppGbb/AppModLab-node-16to22-HackManager-spec2cloud",
"repoOwner": "EmeaAppGbb",
"repoName": "AppModLab-node-16to22-HackManager-spec2cloud"
},
{
"title": "AngularJS to React/Angular",
"description": "Upgrade AngularJS 1.x SPAs to React 18 or Angular 17 with TypeScript",
"authors": [
"marconsilva"
],
"category": "Code Modernization",
"industry": "Cross-Industry",
"services": [
"Azure Static Web Apps",
"Azure Functions"
],
"languages": [
"JavaScript",
"TypeScript"
],
"frameworks": [
"React",
"Angular",
"Vite"
],
"modernizationTools": [],
"agenticTools": [],
"tags": [
"angularjs-migration",
"spa-modernization",
"typescript",
"state-management"
],
"extensions": [
"github.copilot"
],
"thumbnail": "https://raw.githubusercontent.com/EmeaAppGbb/appmodlab-angularjs-to-react-angular-modern/main/assets/thumbnail-gpt-image.png",
"video": "",
"version": "1.0.0",
"repoUrl": "https://github.com/EmeaAppGbb/appmodlab-angularjs-to-react-angular-modern",
"repoOwner": "EmeaAppGbb",
"repoName": "appmodlab-angularjs-to-react-angular-modern"
},
{
"title": "Classic ASP to ASP.NET Core",
"description": "Modernize VBScript/Classic ASP to ASP.NET Core with security best practices",
"authors": [
"marconsilva"
],
"category": "Code Modernization",
"industry": "Cross-Industry",
"services": [
"Azure App Service",
"Azure SQL Database",
"Azure Blob Storage",
"Azure Communication Services"
],
"languages": [
".NET",
"JavaScript"
],
"frameworks": [
"ASP.NET Core",
"Entity Framework Core",
"Razor Pages"
],
"modernizationTools": [],
"agenticTools": [
"GitHub Copilot CLI"
],
"tags": [
"vbscript",
"security-remediation",
"ado-to-efcore",
"sql-injection-fix"
],
"extensions": [
"github.copilot"
],
"thumbnail": "https://raw.githubusercontent.com/EmeaAppGbb/appmodlab-classic-asp-to-aspnet-core/main/assets/thumbnail-gpt-image.png",
"video": "",
"version": "1.0.0",
"repoUrl": "https://github.com/EmeaAppGbb/appmodlab-classic-asp-to-aspnet-core",
"repoOwner": "EmeaAppGbb",
"repoName": "appmodlab-classic-asp-to-aspnet-core"
},
{
"title": "COBOL to Java Modernization",
"description": "Transform mainframe COBOL batch systems to Java microservices on Azure",
"authors": [
"marconsilva"
],
"category": "Code Modernization",
"industry": "Financial Services",
"services": [
"Azure Container Apps",
"Azure SQL Database",
"Azure Service Bus",
"Azure API Management"
],
"languages": [
"COBOL",
"Java"
],
"frameworks": [
"Spring Boot",
"Drools"
],
"modernizationTools": [],
"agenticTools": [],
"tags": [
"mainframe-migration",
"vsam",
"batch-processing",
"event-driven"
],
"extensions": [
"github.copilot"
],
"thumbnail": "https://raw.githubusercontent.com/EmeaAppGbb/appmodlab-cobol-to-java/main/assets/thumbnail-gpt-image.png",
"video": "",
"version": "1.0.0",
"repoUrl": "https://github.com/EmeaAppGbb/appmodlab-cobol-to-java",
"repoOwner": "EmeaAppGbb",
"repoName": "appmodlab-cobol-to-java"
},
{
"title": "EntLib to .NET 9 DI Migration",
"description": "Replace Microsoft Enterprise Library with native .NET Core patterns—logging, DI, exception handling & data access",
"authors": [
"marconsilva"
],
"category": "Code Modernization",
"industry": "Healthcare & Life Sciences",
"services": [
"Azure App Service",
"Azure SQL Database",
"Azure Redis Cache",
"Application Insights"
],
"languages": [
"C#",
".NET"
],
"frameworks": [
"ASP.NET Core",
"Entity Framework Core",
"Serilog"
],
"modernizationTools": [],
"agenticTools": [
"GitHub Copilot CLI"
],
"tags": [
"enterprise-library",
"dependency-injection",
"logging",
"ef-core",
"dotnet-9"
],
"extensions": [
"github.copilot"
],
"thumbnail": "https://raw.githubusercontent.com/EmeaAppGbb/appmodlab-dotnet-framework-entlib-to-dotnet9-core-di/main/assets/thumbnail-gpt-image.png",
"video": "",
"version": "1.0.0",
"repoUrl": "https://github.com/EmeaAppGbb/appmodlab-dotnet-framework-entlib-to-dotnet9-core-di",
"repoOwner": "EmeaAppGbb",
"repoName": "appmodlab-dotnet-framework-entlib-to-dotnet9-core-di"
},
{
"title": ".NET Framework to .NET 9",
"description": "Modernize ASP.NET MVC 5 apps to .NET 9 with EF Core and cloud-native architecture",
"authors": [
"marconsilva"
],
"category": "Code Modernization",
"industry": "Education",
"services": [
"Azure App Service",
"Azure SQL Database",
"Application Insights"
],
"languages": [
".NET",
"C#"
],
"frameworks": [
"ASP.NET Core",
"Entity Framework Core"
],
"modernizationTools": [
".NET Upgrade Assistant"
],
"agenticTools": [
"GitHub Copilot CLI"
],
"tags": [
"migration",
"entity-framework",
"identity",
"dependency-injection"
],
"extensions": [
"github.copilot"
],
"thumbnail": "https://raw.githubusercontent.com/EmeaAppGbb/appmodlab-dotnet-framework-to-dotnet9/main/assets/thumbnail-gpt-image.png",
"video": "",
"version": "1.0.0",
"repoUrl": "https://github.com/EmeaAppGbb/appmodlab-dotnet-framework-to-dotnet9",
"repoOwner": "EmeaAppGbb",
"repoName": "appmodlab-dotnet-framework-to-dotnet9"
},
{
"title": "Getting Started with SQUAD",
"description": "Hands-on introduction to SQUAD multi-agent framework for software development",
"authors": [
"marconsilva"
],
"category": "Agentic Software Development",
"industry": "Cross-Industry",
"services": [],
"languages": [
"JavaScript"
],
"frameworks": [
"Express.js",
"Node.js"
],
"modernizationTools": [],
"agenticTools": [
"SQUAD"
],
"tags": [
"multi-agent",
"task-management",
"REST API",
"agentic-development",
"squad-intro"
],
"extensions": [
"github.copilot"
],
"thumbnail": "https://raw.githubusercontent.com/EmeaAppGbb/appmodlab-getting-started-with-squad/main/assets/thumbnail-gpt-image.png",
"video": "",
"version": "1.0.0",
"repoUrl": "https://github.com/EmeaAppGbb/appmodlab-getting-started-with-squad",
"repoOwner": "EmeaAppGbb",
"repoName": "appmodlab-getting-started-with-squad"
},
{
"title": "IIS to Azure App Service",
"description": "Migrate IIS-hosted apps to Azure App Service with URL rewrites, Easy Auth & deployment slots",
"authors": [
"marconsilva"
],
"category": "Infra Modernization",
"industry": "Cross-Industry",
"services": [
"Azure App Service",
"Azure SQL Database",
"Azure Blob Storage",
"Azure App Configuration",
"Azure Key Vault"
],
"languages": [
".NET",
"C#"
],
"frameworks": [
"ASP.NET Core"
],
"modernizationTools": [],
"agenticTools": [],
"tags": [
"iis-migration",
"app-service",
"entra-id",
"deployment-slots",
"url-rewrite"
],
"extensions": [
"github.copilot"
],
"thumbnail": "https://raw.githubusercontent.com/EmeaAppGbb/appmodlab-iis-to-azure-app-service/main/assets/thumbnail-gpt-image.png",
"video": "",
"version": "1.0.0",
"repoUrl": "https://github.com/EmeaAppGbb/appmodlab-iis-to-azure-app-service",
"repoOwner": "EmeaAppGbb",
"repoName": "appmodlab-iis-to-azure-app-service"
},
{
"title": "Java EE to Spring Boot",
"description": "Migrate Java EE apps to Spring Boot with cloud-native patterns and microservices",
"authors": [
"marconsilva"
],
"category": "Code Modernization",
"industry": "Healthcare & Life Sciences",
"services": [
"Azure Container Apps",
"Azure Database for PostgreSQL",
"Azure Service Bus"
],
"languages": [
"Java"
],
"frameworks": [
"Spring Boot",
"Spring Data JPA",
"Thymeleaf"
],
"modernizationTools": [],
"agenticTools": [],
"tags": [
"ejb-migration",
"jpa",
"spring-security",
"containerization"
],
"extensions": [
"github.copilot"
],
"thumbnail": "https://raw.githubusercontent.com/EmeaAppGbb/appmodlab-java-ee-to-spring-boot/main/assets/thumbnail-gpt-image.png",
"video": "",
"version": "1.0.0",
"repoUrl": "https://github.com/EmeaAppGbb/appmodlab-java-ee-to-spring-boot",
"repoOwner": "EmeaAppGbb",
"repoName": "appmodlab-java-ee-to-spring-boot"
},
{
"title": "Legacy App to Agentic Pipeline",
"description": "End-to-end modernization: reverse-engineer with Spec2Cloud, implement with SQUAD—capstone lab",
"authors": [
"marconsilva"
],
"category": "Agentic Software Development",
"industry": "Financial Services",
"services": [
"Azure Container Apps",
"Azure SQL Database",
"Azure Service Bus",
"Azure Blob Storage"
],
"languages": [
"C#",
".NET"
],
"frameworks": [
"ASP.NET Core",
"Entity Framework Core",
"Blazor"
],
"modernizationTools": [],
"agenticTools": [
"Spec2Cloud",
"SQUAD"
],
"tags": [
"agentic-development",
"spec2cloud",
"squad",
"end-to-end",
"capstone"
],
"extensions": [
"github.copilot"
],
"thumbnail": "https://raw.githubusercontent.com/EmeaAppGbb/appmodlab-legacy-app-to-agentic-development-pipeline/main/assets/thumbnail-gpt-image.png",
"video": "",
"version": "1.0.0",
"repoUrl": "https://github.com/EmeaAppGbb/appmodlab-legacy-app-to-agentic-development-pipeline",
"repoOwner": "EmeaAppGbb",
"repoName": "appmodlab-legacy-app-to-agentic-development-pipeline"
},
{
"title": "SSIS to Azure Data Factory",
"description": "Modernize legacy SSIS ETL pipelines to Azure Data Factory with mapping data flows and orchestration",
"authors": [
"marconsilva"
],
"category": "Data Modernization",
"industry": "Retail & Consumer Goods",
"services": [
"Azure Data Factory",
"Azure Data Lake Storage Gen2",
"Azure Synapse Analytics"
],
"languages": [
"SQL",
"Python",
"C#"
],
"frameworks": [
".NET"
],
"modernizationTools": [
"Azure Data Factory"
],
"agenticTools": [],
"tags": [
"ssis",
"etl",
"data-factory",
"azure-pipelines",
"data-integration"
],
"extensions": [
"github.copilot"
],
"thumbnail": "https://raw.githubusercontent.com/EmeaAppGbb/appmodlab-legacy-etl-to-azure-data-factory/main/assets/thumbnail-gpt-image.png",
"video": "",
"version": "1.0.0",
"screenshots": [
{
"path": "assets/screenshots/01-project-structure.html",
"alt": "Brightfield ETL project tree — Config, SQL, SSIS-Packages, SampleData directories"
},
{
"path": "assets/screenshots/02-master-orchestrator-ssis.html",
"alt": "MasterOrchestrator.dtsx — sequential ETL pipeline: Init → Extract → Transform → Load → Complete"
},
{
"path": "assets/screenshots/03-extract-pos-sales-dataflow.html",
"alt": "Extract_POS_Sales.dtsx — incremental OLE DB source → Derived Column → staging destination"
},
{
"path": "assets/screenshots/04-transform-sales-facts-pipeline.html",
"alt": "Transform_SalesFacts.dtsx — four dimension lookups, calculated metrics, data quality split"
},
{
"path": "assets/screenshots/05-scd-type2-customer-dimension.html",
"alt": "SCD Type 2 stored procedure — expire, insert new version, insert new customer"
},
{
"path": "assets/screenshots/06-data-warehouse-star-schema.html",
"alt": "Star schema — DimDate, DimStore, DimProduct, DimCustomer, FactSales, FactInventory"
},
{
"path": "assets/screenshots/07-load-factsales-index-strategy.html",
"alt": "Load_FactSales.dtsx — drop indexes, merge with dimension lookups, rebuild indexes"
},
{
"path": "assets/screenshots/08-incremental-load-watermark.html",
"alt": "Watermark pattern — audit.WatermarkTable with Get/Update stored procedures"
},
{
"path": "assets/screenshots/09-config-connections.html",
"alt": "SSIS configuration — connection strings, Production/Development environment variables"
}
],
"repoUrl": "https://github.com/EmeaAppGbb/appmodlab-legacy-etl-to-azure-data-factory",
"repoOwner": "EmeaAppGbb",
"repoName": "appmodlab-legacy-etl-to-azure-data-factory"
},
{
"title": "MongoDB to Azure Cosmos DB",
"description": "Migrate MongoDB workloads to Azure Cosmos DB with schema optimization and partition key design",
"authors": [
"marconsilva"
],
"category": "Data Modernization",
"industry": "Cross-Industry",
"services": [
"Azure CosmosDB",
"Azure Blob Storage",
"Azure AI Search"
],
"languages": [
"JavaScript",
"Node.js"
],
"frameworks": [
"Express.js",
"Mongoose"
],
"modernizationTools": [
"Azure Database Migration Service"
],
"agenticTools": [],
"tags": [
"mongodb",
"cosmosdb",
"nosql",
"partition-keys",
"document-database"
],
"extensions": [
"github.copilot"
],
"thumbnail": "https://raw.githubusercontent.com/EmeaAppGbb/appmodlab-mongodb-to-azure-cosmos-db/main/assets/thumbnail-gpt-image.png",
"video": "",
"version": "1.0.0",
"repoUrl": "https://github.com/EmeaAppGbb/appmodlab-mongodb-to-azure-cosmos-db",
"repoOwner": "EmeaAppGbb",
"repoName": "appmodlab-mongodb-to-azure-cosmos-db"
},
{
"title": "Monolith to Microservices with Agents",
"description": "Decompose Java monolith to microservices using Spec2Cloud & SQUAD with Strangler Fig pattern",
"authors": [
"marconsilva"
],
"category": "Code Modernization",
"industry": "Education",
"services": [
"Azure Container Apps",
"Azure Service Bus",
"Azure API Management",
"Azure SQL Database"
],
"languages": [
"Java"
],
"frameworks": [
"Spring Boot",
"Spring Cloud Gateway"
],
"modernizationTools": [],
"agenticTools": [
"Spec2Cloud",
"SQUAD"
],
"tags": [
"microservices",
"strangler-fig",
"bounded-context",
"saga-pattern",
"spring-boot"
],
"extensions": [
"github.copilot"
],
"thumbnail": "https://raw.githubusercontent.com/EmeaAppGbb/appmodlab-monolith-to-microservices-with-agents/main/assets/thumbnail-gpt-image.png",
"video": "",
"version": "1.0.0",
"repoUrl": "https://github.com/EmeaAppGbb/appmodlab-monolith-to-microservices-with-agents",
"repoOwner": "EmeaAppGbb",
"repoName": "appmodlab-monolith-to-microservices-with-agents"
},
{
"title": "SQL DW to Azure Synapse",
"description": "Migrate on-premises SQL Server data warehouse to Azure Synapse Analytics with MPP optimization",
"authors": [
"marconsilva"
],
"category": "Data Modernization",
"industry": "Telco & Media",
"services": [
"Azure Synapse Analytics",
"Azure Data Lake Storage Gen2",
"Power BI"
],
"languages": [
"SQL",
"Python"
],
"frameworks": [],
"modernizationTools": [
"PolyBase"
],
"agenticTools": [],
"tags": [
"data-warehouse",
"synapse",
"mpp",
"analytics",
"lakehouse"
],
"extensions": [
"github.copilot"
],
"thumbnail": "https://raw.githubusercontent.com/EmeaAppGbb/appmodlab-on-prem-data-warehouse-to-azure-synapse/main/assets/thumbnail-gpt-image.png",
"video": "",
"version": "1.0.0",
"screenshots": [
"assets/screenshots/01-star-schema-dimensions.html",
"assets/screenshots/02-fact-tables-partitioned.html",
"assets/screenshots/03-etl-load-stored-procedures.html",
"assets/screenshots/04-architecture-migration-overview.html",
"assets/screenshots/05-partition-and-fk-strategy.html"
],
"repoUrl": "https://github.com/EmeaAppGbb/appmodlab-on-prem-data-warehouse-to-azure-synapse",
"repoOwner": "EmeaAppGbb",
"repoName": "appmodlab-on-prem-data-warehouse-to-azure-synapse"
},
{
"title": "SQL Server to Azure SQL MI",
"description": "Migrate on-premises SQL Server databases to Azure SQL Managed Instance with minimal downtime using Azure DMS",
"authors": [
"marconsilva"
],
"category": "Data Modernization",
"industry": "Healthcare & Life Sciences",
"services": [
"Azure SQL Managed Instance",
"Azure Database Migration Service"
],
"languages": [
"SQL",
"T-SQL",
"C#"
],
"frameworks": [
".NET"
],
"modernizationTools": [
"Azure Migrate",
"Data Migration Assistant"
],
"agenticTools": [],
"tags": [
"sql-server",
"managed-instance",
"database-migration",
"dms",
"clr",
"service-broker"
],
"extensions": [
"github.copilot"
],
"thumbnail": "https://raw.githubusercontent.com/EmeaAppGbb/appmodlab-on-prem-sql-server-to-azure-sql-mi/main/assets/thumbnail-gpt-image.png",
"video": "",
"version": "1.0.0",
"repoUrl": "https://github.com/EmeaAppGbb/appmodlab-on-prem-sql-server-to-azure-sql-mi",
"repoOwner": "EmeaAppGbb",
"repoName": "appmodlab-on-prem-sql-server-to-azure-sql-mi"
},
{
"title": "VMs to Azure Container Apps",
"description": "Containerize VM workloads and deploy to Container Apps with Dapr, KEDA auto-scaling & Service Bus",
"authors": [
"marconsilva"
],
"category": "Infra Modernization",
"industry": "Healthcare & Life Sciences",
"services": [
"Azure Container Apps",
"Azure Container Registry",
"Azure Service Bus",
"Azure Cosmos DB",
"Azure Blob Storage"
],
"languages": [
".NET",
"JavaScript",
"Python"
],
"frameworks": [
"ASP.NET Core",
"Express",
"Celery"
],
"modernizationTools": [
"Docker",
"Dapr",
"KEDA"
],
"agenticTools": [],
"tags": [
"containerization",
"container-apps",
"dapr",
"keda",
"multi-language"
],
"extensions": [
"github.copilot"
],
"thumbnail": "https://raw.githubusercontent.com/EmeaAppGbb/appmodlab-on-prem-vms-to-container-apps/main/assets/thumbnail-gpt-image.png",
"video": "",
"version": "1.0.0",
"repoUrl": "https://github.com/EmeaAppGbb/appmodlab-on-prem-vms-to-container-apps",
"repoOwner": "EmeaAppGbb",
"repoName": "appmodlab-on-prem-vms-to-container-apps"
},
{
"title": "PHP to Python Flask/FastAPI",
"description": "Migrate legacy PHP apps to Python FastAPI with modern async patterns",
"authors": [
"marconsilva"
],
"category": "Code Modernization",
"industry": "Cross-Industry",
"services": [
"Azure Container Apps",
"Azure Database for PostgreSQL",
"Azure Blob Storage",
"Azure Communication Services"
],
"languages": [
"Python"
],
"frameworks": [
"FastAPI",
"Flask",
"SQLAlchemy"
],
"modernizationTools": [],
"agenticTools": [],
"tags": [
"php-migration",
"fastapi",
"mysql-to-postgresql",
"api-first"
],
"extensions": [
"github.copilot"
],
"thumbnail": "https://raw.githubusercontent.com/EmeaAppGbb/appmodlab-php-legacy-to-python-flask-fastapi/main/assets/thumbnail-gpt-image.png",
"video": "",
"version": "1.0.0",
"repoUrl": "https://github.com/EmeaAppGbb/appmodlab-php-legacy-to-python-flask-fastapi",
"repoOwner": "EmeaAppGbb",
"repoName": "appmodlab-php-legacy-to-python-flask-fastapi"
},
{
"title": "Reverse Engineering with Spec2Cloud",
"description": "Deep analysis of legacy enterprise apps with TransFleet ERP - extract specs from complex codebases",
"authors": [
"marconsilva"
],
"category": "Spec-Driven Development",
"industry": "Cross-Industry",
"services": [
"Azure Container Apps"
],
"languages": [
".NET",
"C#"
],
"frameworks": [
"ASP.NET Web API",
"Entity Framework",
"WCF"
],
"modernizationTools": [
"Spec2Cloud"
],
"agenticTools": [],
"tags": [
"reverse-engineering",
"legacy-analysis",
"specification-extraction",
"bounded-contexts",
"wcf"
],
"extensions": [
"github.copilot"
],
"thumbnail": "https://raw.githubusercontent.com/EmeaAppGbb/appmodlab-reverse-engineering-legacy-apps-with-spec2cloud/main/assets/thumbnail-gpt-image.png",
"video": "",
"version": "1.0.0",
"repoUrl": "https://github.com/EmeaAppGbb/appmodlab-reverse-engineering-legacy-apps-with-spec2cloud",
"repoOwner": "EmeaAppGbb",
"repoName": "appmodlab-reverse-engineering-legacy-apps-with-spec2cloud"
},
{
"title": "Spec-Driven API Modernization",
"description": "Modernize SOAP/REST APIs to unified OpenAPI with CargoLink shipping - WSDL to REST transformation",
"authors": [
"marconsilva"
],
"category": "Spec-Driven Development",
"industry": "Cross-Industry",
"services": [
"Azure API Management",
"Azure App Service",
"Azure SQL Database"
],
"languages": [
".NET",
"C#"
],
"frameworks": [
"WCF",
"ASP.NET Core Web API"
],
"modernizationTools": [
"Spec2Cloud"
],
"agenticTools": [],
"tags": [
"api-modernization",
"soap-to-rest",
"openapi",
"wcf",
"api-management"
],
"extensions": [
"github.copilot"
],
"thumbnail": "https://raw.githubusercontent.com/EmeaAppGbb/appmodlab-spec-driven-api-modernization/main/assets/thumbnail-gpt-image.png",
"video": "",
"version": "1.0.0",
"screenshots": [
{
"path": "assets/screenshots/01-rest-api-endpoints.md",
"caption": "Legacy REST API — live endpoint responses on port 5800"
},
{
"path": "assets/screenshots/02-legacy-code-structure.md",
"caption": "Solution structure and SOAP vs REST inconsistencies"
},
{
"path": "assets/screenshots/03-soap-service-contracts.md",
"caption": "WCF SOAP service contracts and data contracts"
},
{
"path": "assets/screenshots/openapi-v1-generated.json",
"caption": "Auto-generated OpenAPI spec from running API"
},
{
"path": "openapi-legacy-rest.json",
"caption": "Reverse-engineered OpenAPI 3.0.3 spec from legacy code"
}
],
"repoUrl": "https://github.com/EmeaAppGbb/appmodlab-spec-driven-api-modernization",
"repoOwner": "EmeaAppGbb",
"repoName": "appmodlab-spec-driven-api-modernization"
},
{
"title": "Spec2Cloud .NET Framework Modernization",
"description": "Modernize ASP.NET Web Forms to .NET 9 using spec-driven approach with Riverdale permit system",
"authors": [
"marconsilva"
],
"category": "Spec-Driven Development",
"industry": "Government & Public Sector",
"services": [
"Azure App Service",
"Azure SQL Database",
"Azure Redis Cache",
"Azure Blob Storage"
],
"languages": [
".NET",
"C#"
],
"frameworks": [
"ASP.NET Web Forms",
"ASP.NET Core",
"Blazor",
"Entity Framework Core"
],
"modernizationTools": [
"Spec2Cloud"
],
"agenticTools": [],
"tags": [
"dotnet-framework",
"web-forms",
"blazor",
"modernization",
"specifications"
],
"extensions": [
"github.copilot"
],
"thumbnail": "https://raw.githubusercontent.com/EmeaAppGbb/appmodlab-spec2cloud-dotnet-framework/main/assets/thumbnail-gpt-image.png",
"video": "",
"version": "1.0.0",
"repoUrl": "https://github.com/EmeaAppGbb/appmodlab-spec2cloud-dotnet-framework",
"repoOwner": "EmeaAppGbb",
"repoName": "appmodlab-spec2cloud-dotnet-framework"
},
{
"title": "Intro to Spec2Cloud",
"description": "Learn spec-driven development with OpenShelf Library - generate specs from code and build modern apps",
"authors": [
"marconsilva"
],
"category": "Spec-Driven Development",
"industry": "Education",
"services": [],
"languages": [
"JavaScript"
],
"frameworks": [
"Node.js",
"Express.js"
],
"modernizationTools": [
"Spec2Cloud"
],
"agenticTools": [],
"tags": [
"spec-driven",
"specification",
"architecture",
"api-contracts",