-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprojects-inventory.json
More file actions
1535 lines (1535 loc) · 75 KB
/
Copy pathprojects-inventory.json
File metadata and controls
1535 lines (1535 loc) · 75 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
{
"groups": [
{
"name": "Analytics",
"projects": [
{
"name": "fenske",
"url": "git@gitlab.com:uproarcar/olive-com/analytics/fenske.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/analytics/fenske.git",
"default_branch": "main"
},
{
"name": "pyspark-test",
"url": "git@gitlab.com:uproarcar/olive-com/analytics/pyspark-test.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/analytics/pyspark-test.git",
"default_branch": "main"
}
]
},
{
"name": "Artificial Intelligence",
"projects": [
{
"name": "bedrock-development-agent",
"url": "git@gitlab.com:uproarcar/olive-com/artificial-intelligence/bedrock-development-agent.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/artificial-intelligence/bedrock-development-agent.git",
"default_branch": "main"
},
{
"name": "mcp-DataScience",
"url": "git@gitlab.com:uproarcar/olive-com/artificial-intelligence/mcp-datascience.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/artificial-intelligence/mcp-datascience.git",
"default_branch": "main"
},
{
"name": "mcp-development",
"url": "git@gitlab.com:uproarcar/olive-com/artificial-intelligence/mcp-development.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/artificial-intelligence/mcp-development.git",
"default_branch": "main"
}
]
},
{
"name": "BI",
"projects": [
{
"name": "PowerBI",
"url": "git@gitlab.com:uproarcar/olive-com/bi/powerbi.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/bi/powerbi.git",
"default_branch": "main"
}
]
},
{
"name": "Boilerplates",
"groups": [
{
"name": "Microfrontends",
"projects": [
{
"name": "Olive Fragment Microfrontend Vite Boilerplate",
"url": "git@gitlab.com:uproarcar/olive-com/boilerplates/microfrontends/olive-fragment-microfrontend-vite-boilerplate.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/boilerplates/microfrontends/olive-fragment-microfrontend-vite-boilerplate.git",
"default_branch": "master"
},
{
"name": "olive-fragment-microfrontend-boilerplate",
"url": "git@gitlab.com:uproarcar/olive-com/boilerplates/microfrontends/olive-fragment-microfrontend-boilerplate.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/boilerplates/microfrontends/olive-fragment-microfrontend-boilerplate.git",
"default_branch": "master"
},
{
"name": "olive-microfragment-vite-boilerplate",
"url": "git@gitlab.com:uproarcar/olive-com/boilerplates/microfrontends/olive-microfragment-vite-boilerplate.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/boilerplates/microfrontends/olive-microfragment-vite-boilerplate.git",
"default_branch": "master"
},
{
"name": "olive-page-microfrontend-boilerplate",
"url": "git@gitlab.com:uproarcar/olive-com/boilerplates/microfrontends/olive-page-microfrontend-boilerplate.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/boilerplates/microfrontends/olive-page-microfrontend-boilerplate.git",
"default_branch": "main"
}
]
},
{
"name": "Microservices"
}
]
},
{
"name": "Data engineer",
"projects": [
{
"name": "accountnet",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/accountnet.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/accountnet.git",
"default_branch": "main"
},
{
"name": "accountnet_metrics",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/accountnet_metrics.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/accountnet_metrics.git",
"default_branch": "main"
},
{
"name": "aws_to_hubspot",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/aws_to_hubspot.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/aws_to_hubspot.git",
"default_branch": "main"
},
{
"name": "bordereau",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/bordereau.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/bordereau.git",
"default_branch": "main"
},
{
"name": "deleted_biweekly",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/biweekly.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/biweekly.git",
"default_branch": "main"
},
{
"name": "deleted_ford_data_ingestion",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/ford_data_ingestion.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/ford_data_ingestion.git",
"default_branch": "main"
},
{
"name": "deleted_ford_dealer_dna_table",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/ford_dealer_dna_table.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/ford_dealer_dna_table.git",
"default_branch": "main"
},
{
"name": "deleted_ford_dealer_file",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/ford_dealer.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/ford_dealer.git",
"default_branch": "main"
},
{
"name": "deleted_ford_dealer_salesforce_data_ingestion",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/ford_dealer_salesforce_data_ingestion.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/ford_dealer_salesforce_data_ingestion.git",
"default_branch": "main"
},
{
"name": "deleted_ford_exp_history_v2",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/ford_exp_history_v2.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/ford_exp_history_v2.git",
"default_branch": "main"
},
{
"name": "deleted_ford_pid_generation",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/pid-creation.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/pid-creation.git",
"default_branch": "main"
},
{
"name": "deleted_mpos_cancel_file",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/mpos_cancel.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/mpos_cancel.git",
"default_branch": "main"
},
{
"name": "deleted_mpos_daily_sales_file",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/mpos_daily_sales.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/mpos_daily_sales.git",
"default_branch": "main"
},
{
"name": "deleted_mpos_data_project",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/mpos-data-project.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/mpos-data-project.git",
"default_branch": "main"
},
{
"name": "deleted_oem_dashboard",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/oem_dashboard.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/oem_dashboard.git",
"default_branch": "main"
},
{
"name": "deleted_oem_data_project",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/oem-data-project.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/oem-data-project.git",
"default_branch": "main"
},
{
"name": "deleted_payments_reports",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/payments_reports.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/payments_reports.git",
"default_branch": "main"
},
{
"name": "deleted_sf_ford_tables_resumen",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/sf_ford_tables_resumen.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/sf_ford_tables_resumen.git",
"default_branch": "main"
},
{
"name": "deleted_shop_database_data_ingestion",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/shop_database.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/shop_database.git",
"default_branch": "main"
},
{
"name": "deleted_stellantis_email_optout_file_beta",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/mpos-email.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/mpos-email.git",
"default_branch": "main"
},
{
"name": "dsf_request",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/dfs_request.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/dfs_request.git",
"default_branch": "main"
},
{
"name": "exodus_daily_routines",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/exodus_daily_routines.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/exodus_daily_routines.git",
"default_branch": "main"
},
{
"name": "exodus_data_ingestion",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/exodus_data_ingestion.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/exodus_data_ingestion.git",
"default_branch": "main"
},
{
"name": "exodus_ingestion_resumen",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/exodus_ingestion_resumen.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/exodus_ingestion_resumen.git",
"default_branch": "main"
},
{
"name": "fenske_cdk",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/fenske_cdk.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/fenske_cdk.git",
"default_branch": "main"
},
{
"name": "ford_add_on",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/ford_add_on.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/ford_add_on.git",
"default_branch": "main"
},
{
"name": "ford_clock",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/ford_clock.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/ford_clock.git",
"default_branch": "main"
},
{
"name": "ford_daily_routines",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/ford_daily_routines.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/ford_daily_routines.git",
"default_branch": "main"
},
{
"name": "ford_dna_table",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/ford_dna_table.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/ford_dna_table.git",
"default_branch": "main"
},
{
"name": "ford_files_oem_csp_exp",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/ford_files_oem_csp_exp.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/ford_files_oem_csp_exp.git",
"default_branch": "main"
},
{
"name": "ford_files_update_contacts",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/ford_files_update_contacts.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/ford_files_update_contacts.git",
"default_branch": "main"
},
{
"name": "ford_files_update_vehicles",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/ford_files_update_vehicles.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/ford_files_update_vehicles.git",
"default_branch": "main"
},
{
"name": "ford_lmrv",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/ford_lmrv.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/ford_lmrv.git",
"default_branch": "main"
},
{
"name": "ford_mind_month_files",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/oem-mind-month-ford-files.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/oem-mind-month-ford-files.git",
"default_branch": "main"
},
{
"name": "ford_one_adr",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/ford_one_adr.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/ford_one_adr.git",
"default_branch": "main"
},
{
"name": "ford_reinstate",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/ford_reinstate.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/ford_reinstate.git",
"default_branch": "main"
},
{
"name": "general_infrastructure_cdk",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/general_infrastructure_cdk.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/general_infrastructure_cdk.git",
"default_branch": "main"
},
{
"name": "general_purpose",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/general_purpose.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/general_purpose.git",
"default_branch": "main"
},
{
"name": "glue_shop_database",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/glue_shop_database.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/glue_shop_database.git",
"default_branch": "main"
},
{
"name": "google_analytics_data",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/google_analytics_data.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/google_analytics_data.git",
"default_branch": "main"
},
{
"name": "hubspot_crm_events",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/hubspot_crm_events.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/hubspot_crm_events.git",
"default_branch": "main"
},
{
"name": "hubspot_data_ingestion",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/hubspot_ingestion_original.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/hubspot_ingestion_original.git",
"default_branch": "main"
},
{
"name": "hubspot_to_aws",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/hubspot_to_aws.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/hubspot_to_aws.git",
"default_branch": "main"
},
{
"name": "mixpanel",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/mixpanel.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/mixpanel.git",
"default_branch": "main"
},
{
"name": "oasis_registration",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/oasis_registration.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/oasis_registration.git",
"default_branch": "main"
},
{
"name": "olive_salesforce_data_ingestion",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/olive_data_ingestion.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/olive_data_ingestion.git",
"default_branch": "main"
},
{
"name": "pid_generate_service",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/pid_generate_service.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/pid_generate_service.git",
"default_branch": "main"
},
{
"name": "pull_opportunity_cdk",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/pull_opportunity_cdk.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/pull_opportunity_cdk.git",
"default_branch": "main"
},
{
"name": "sales_agent_search",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/sales_agent_search.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/sales_agent_search.git",
"default_branch": "main"
},
{
"name": "salesforce_master_tables_cdk",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/salesforce_master_tables_cdk.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/salesforce_master_tables_cdk.git",
"default_branch": "main"
},
{
"name": "segment_logs",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/segment_logs.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/segment_logs.git",
"default_branch": "main"
},
{
"name": "sf_fca_tables_resumen",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/sf_fca_tables_resumen.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/sf_fca_tables_resumen.git",
"default_branch": "main"
},
{
"name": "sf_olive_tables_resumen",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/sf_olive_tables_resumen.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/sf_olive_tables_resumen.git",
"default_branch": "main"
},
{
"name": "sf_plan_master_table",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/sf_plan_master_table.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/sf_plan_master_table.git",
"default_branch": "main"
},
{
"name": "sf_policy_master_table",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/sf_policy_master_table.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/sf_policy_master_table.git",
"default_branch": "main"
},
{
"name": "stellantis_clock",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/stellantis_clock.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/stellantis_clock.git",
"default_branch": "main"
},
{
"name": "stellantis_daily_routines",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/fca_daily_routines.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/fca_daily_routines.git",
"default_branch": "main"
},
{
"name": "stellantis_dna_table",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/stellantis_dna_table.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/stellantis_dna_table.git",
"default_branch": "main"
},
{
"name": "stellantis_download_files",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/stellantis_download_files.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/stellantis_download_files.git",
"default_branch": "main"
},
{
"name": "stellantis_email_optout_file",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/stellantis_email_optout_file.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/stellantis_email_optout_file.git",
"default_branch": "main"
},
{
"name": "stellantis_files_exp",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/stellantis_files_cdk.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/stellantis_files_cdk.git",
"default_branch": "main"
},
{
"name": "stellantis_files_mvp_oem",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/stellantis_files_mvp_oem.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/stellantis_files_mvp_oem.git",
"default_branch": "main"
},
{
"name": "stellantis_files_update_contacts",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/stellantis_files_update_contacts.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/stellantis_files_update_contacts.git",
"default_branch": "main"
},
{
"name": "stellantis_files_vri",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/stellantis_files_vri.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/stellantis_files_vri.git",
"default_branch": "main"
},
{
"name": "stellantis_salesforce_data_ingestion",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/fca_data_ingestion.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/fca_data_ingestion.git",
"default_branch": "main"
},
{
"name": "summaries_bi",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/summaries_bi.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/summaries_bi.git",
"default_branch": "main"
},
{
"name": "summaries_dna",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/summaries_dna.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/summaries_dna.git",
"default_branch": "main"
},
{
"name": "vonage_audio",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/vonage_audio.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/vonage_audio.git",
"default_branch": "main"
},
{
"name": "zerobounce_response",
"url": "git@gitlab.com:uproarcar/olive-com/data-engineer/zerobounce_response.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/data-engineer/zerobounce_response.git",
"default_branch": "main"
}
]
},
{
"name": "Proof of Concept",
"groups": [
{
"name": "Microfrontends",
"projects": [
{
"name": "podium-react-poc",
"url": "git@gitlab.com:uproarcar/olive-com/proof-of-concept/microfrontends/podium-react-poc.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/proof-of-concept/microfrontends/podium-react-poc.git",
"default_branch": "main"
}
]
}
]
},
{
"name": "Salesforce",
"projects": [
{
"name": "Data Dictionary Salesforce",
"url": "git@gitlab.com:uproarcar/olive-com/salesforce/data-dictionary-salesforce.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/salesforce/data-dictionary-salesforce.git",
"default_branch": "master"
},
{
"name": "FCA",
"url": "git@gitlab.com:uproarcar/olive-com/salesforce/fca-newMock.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/salesforce/fca-newMock.git",
"default_branch": "main"
},
{
"name": "Ford",
"url": "git@gitlab.com:uproarcar/olive-com/salesforce/ford.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/salesforce/ford.git",
"default_branch": "main",
"description": "Ford"
},
{
"name": "Ford Dealer Development",
"url": "git@gitlab.com:uproarcar/olive-com/salesforce/ford-dealer-development.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/salesforce/ford-dealer-development.git",
"default_branch": "main"
},
{
"name": "Ford Old Republic",
"url": "git@gitlab.com:uproarcar/olive-com/salesforce/ford-old-republic.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/salesforce/ford-old-republic.git",
"default_branch": "main"
},
{
"name": "FordDealers",
"url": "git@gitlab.com:uproarcar/olive-com/salesforce/forddealers.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/salesforce/forddealers.git",
"default_branch": "main"
},
{
"name": "Olive",
"url": "git@gitlab.com:uproarcar/olive-com/salesforce/olive.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/salesforce/olive.git",
"default_branch": "main"
},
{
"name": "Olive Canada",
"url": "git@gitlab.com:uproarcar/olive-com/salesforce/olive-canada.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/salesforce/olive-canada.git",
"default_branch": "main"
},
{
"name": "Olive-metadata",
"url": "git@gitlab.com:uproarcar/olive-com/salesforce/olive-metadata.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/salesforce/olive-metadata.git",
"default_branch": "main"
},
{
"name": "Python data analysis",
"url": "git@gitlab.com:uproarcar/olive-com/salesforce/python-data-analysis.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/salesforce/python-data-analysis.git",
"default_branch": "main"
},
{
"name": "SF All Orgs Code Sync",
"url": "git@gitlab.com:uproarcar/olive-com/salesforce/sf-all-orgs-code-sync.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/salesforce/sf-all-orgs-code-sync.git",
"default_branch": "main"
},
{
"name": "SF data analysis ",
"url": "git@gitlab.com:uproarcar/olive-com/salesforce/sf-data-analysis.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/salesforce/sf-data-analysis.git",
"default_branch": "main"
},
{
"name": "Salesforce-Packages",
"url": "git@gitlab.com:uproarcar/olive-com/salesforce/salesforce-packages.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/salesforce/salesforce-packages.git",
"default_branch": "main"
},
{
"name": "SalesforceDocuments",
"url": "git@gitlab.com:uproarcar/olive-com/salesforce/salesforcedocuments.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/salesforce/salesforcedocuments.git",
"default_branch": "master"
},
{
"name": "Upload Website",
"url": "git@gitlab.com:uproarcar/olive-com/salesforce/upload-website.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/salesforce/upload-website.git",
"default_branch": "main"
},
{
"name": "Upload Website API",
"url": "git@gitlab.com:uproarcar/olive-com/salesforce/upload-website-api.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/salesforce/upload-website-api.git",
"default_branch": "main"
},
{
"name": "exodus-migration",
"url": "git@gitlab.com:uproarcar/olive-com/salesforce/exodus-migration.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/salesforce/exodus-migration.git",
"default_branch": "main"
},
{
"name": "ford_oem_deploy_poc",
"url": "git@gitlab.com:uproarcar/olive-com/salesforce/ford_oem_deploy_poc.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/salesforce/ford_oem_deploy_poc.git",
"default_branch": "dev"
},
{
"name": "new_batch_quoting",
"url": "git@gitlab.com:uproarcar/olive-com/salesforce/new_batch_quoting.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/salesforce/new_batch_quoting.git",
"default_branch": "main"
},
{
"name": "salesforce-aws-sftppaylink",
"url": "git@gitlab.com:uproarcar/olive-com/salesforce/salesforce-aws-sftppaylink.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/salesforce/salesforce-aws-sftppaylink.git",
"default_branch": "master"
},
{
"name": "temporal app",
"url": "git@gitlab.com:uproarcar/olive-com/salesforce/temporal-app.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/salesforce/temporal-app.git",
"default_branch": "main"
}
]
},
{
"name": "Team Gondor",
"groups": [
{
"name": "Libraries",
"projects": [
{
"name": "olive.libraries.chase",
"url": "git@gitlab.com:uproarcar/olive-com/team-gondor/libraries/olive.libraries.chase.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-gondor/libraries/olive.libraries.chase.git",
"default_branch": "main"
},
{
"name": "olive.libraries.fiserv",
"url": "git@gitlab.com:uproarcar/olive-com/team-gondor/libraries/olive.libraries.fiserv.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-gondor/libraries/olive.libraries.fiserv.git",
"default_branch": "development"
},
{
"name": "olive.libraries.paymentgateway",
"url": "git@gitlab.com:uproarcar/olive-com/team-gondor/libraries/olive.libraries.paymentgateway.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-gondor/libraries/olive.libraries.paymentgateway.git",
"default_branch": "main"
},
{
"name": "olive.libraries.paymentgateway.documentation",
"url": "git@gitlab.com:uproarcar/olive-com/team-gondor/libraries/olive.libraries.paymentgateway.documentation.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-gondor/libraries/olive.libraries.paymentgateway.documentation.git",
"default_branch": "main"
}
]
},
{
"name": "Microfrontends",
"projects": [
{
"name": "olive-mff-ecommerce-assets",
"url": "git@gitlab.com:uproarcar/olive-com/team-gondor/microfrontends/olive-mff-ecommerce-assets.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-gondor/microfrontends/olive-mff-ecommerce-assets.git",
"default_branch": "development",
"description": "Initialization of assets"
},
{
"name": "olive-mff-ecommerce-customer-reviews",
"url": "git@gitlab.com:uproarcar/olive-com/team-gondor/microfrontends/olive-mff-ecommerce-customer-reviews.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-gondor/microfrontends/olive-mff-ecommerce-customer-reviews.git",
"default_branch": "development"
},
{
"name": "olive-mff-ecommerce-customer-reviews-test",
"url": "git@gitlab.com:uproarcar/olive-com/team-gondor/microfrontends/olive-mff-ecommerce-customer-reviews-test.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-gondor/microfrontends/olive-mff-ecommerce-customer-reviews-test.git",
"default_branch": "development"
},
{
"name": "olive-mff-ecommerce-error-pages",
"url": "git@gitlab.com:uproarcar/olive-com/team-gondor/microfrontends/olive-mff-ecommerce-error-pages.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-gondor/microfrontends/olive-mff-ecommerce-error-pages.git",
"default_branch": "development",
"description": "Generic error pages for the flow"
},
{
"name": "olive-mff-ecommerce-generic-content",
"url": "git@gitlab.com:uproarcar/olive-com/team-gondor/microfrontends/olive-mff-ecommerce-generic-content.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-gondor/microfrontends/olive-mff-ecommerce-generic-content.git",
"default_branch": "development"
},
{
"name": "olive-mff-ecommerce-header",
"url": "git@gitlab.com:uproarcar/olive-com/team-gondor/microfrontends/olive-mff-ecommerce-header.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-gondor/microfrontends/olive-mff-ecommerce-header.git",
"default_branch": "development"
},
{
"name": "olive-mfp-ecommerce-error-pages",
"url": "git@gitlab.com:uproarcar/olive-com/team-gondor/microfrontends/olive-mfp-ecommerce-error-pages.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-gondor/microfrontends/olive-mfp-ecommerce-error-pages.git",
"default_branch": "development"
}
]
},
{
"name": "Microservices",
"projects": [
{
"name": "olive-content-api",
"url": "git@gitlab.com:uproarcar/olive-com/team-gondor/microservices/olive-content-api.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-gondor/microservices/olive-content-api.git",
"default_branch": "development"
},
{
"name": "olive.business.checkout",
"url": "git@gitlab.com:uproarcar/olive-com/team-gondor/microservices/olive.business.checkout.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-gondor/microservices/olive.business.checkout.git",
"default_branch": "development"
},
{
"name": "olive.business.contract",
"url": "git@gitlab.com:uproarcar/olive-com/team-gondor/microservices/olive.business.contract.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-gondor/microservices/olive.business.contract.git",
"default_branch": "development"
}
]
}
]
},
{
"name": "Team Ludus",
"groups": [
{
"name": "Libraries",
"projects": [
{
"name": "Olive.Libraries.Providers.APC",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.providers.apc.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.providers.apc.git",
"default_branch": "main"
},
{
"name": "Olive.Libraries.Rewards",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.rewards.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.rewards.git",
"default_branch": "master"
},
{
"name": "Olive.Libraries.Salesforce",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.salesforce.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.salesforce.git",
"default_branch": "development"
},
{
"name": "olive.libraries.avalara",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.business.avalara.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.business.avalara.git",
"default_branch": "main"
},
{
"name": "olive.libraries.budco",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.budco.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.budco.git",
"default_branch": "development"
},
{
"name": "olive.libraries.configuration",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.configuration.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.configuration.git",
"default_branch": "main"
},
{
"name": "olive.libraries.contract",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.contract.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.contract.git",
"default_branch": "development"
},
{
"name": "olive.libraries.datalake",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.datalake.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.datalake.git",
"default_branch": "main"
},
{
"name": "olive.libraries.ford-contract",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.ford-contract.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.ford-contract.git",
"default_branch": "main"
},
{
"name": "olive.libraries.fordcontract",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.fordcontract.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.fordcontract.git",
"default_branch": "development"
},
{
"name": "olive.libraries.interfaces",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.interfaces.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.interfaces.git",
"default_branch": "development"
},
{
"name": "olive.libraries.moparcontract",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.moparcontract.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.moparcontract.git",
"default_branch": "development"
},
{
"name": "olive.libraries.partners.accountnet",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.partners.accountnet.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.partners.accountnet.git",
"default_branch": "main"
},
{
"name": "olive.libraries.payeezy",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.payeezy.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.payeezy.git",
"default_branch": "development"
},
{
"name": "olive.libraries.payment",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.payment.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.payment.git",
"default_branch": "development"
},
{
"name": "olive.libraries.providers.ford",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.providers.ford.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.providers.ford.git",
"default_branch": "main"
},
{
"name": "olive.libraries.providers.qbe",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.providers.qbe.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.providers.qbe.git",
"default_branch": "main"
},
{
"name": "olive.libraries.providers.stellantis",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.providers.stellantis.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.providers.stellantis.git",
"default_branch": "main"
},
{
"name": "olive.libraries.recommendedproduct",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.recommendedproduct.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.recommendedproduct.git",
"default_branch": "main"
},
{
"name": "olive.libraries.rulesengine",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.rulesengine.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.rulesengine.git",
"default_branch": "development"
},
{
"name": "olive.libraries.salesforceORM",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.salesforceorm.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.salesforceorm.git",
"default_branch": "main"
},
{
"name": "olive.libraries.salesforceObjects",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.salesforceobjects.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.salesforceobjects.git",
"default_branch": "main"
},
{
"name": "olive.libraries.sessionintegration",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.sessionintegration.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.sessionintegration.git",
"default_branch": "development"
},
{
"name": "olive.libraries.statsig",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.statsig.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.statsig.git",
"default_branch": "main"
},
{
"name": "olive.libraries.transaction",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.transaction.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.transaction.git",
"default_branch": "main"
},
{
"name": "olive.libraries.utilities",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libraries.utilities.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libraries.utilities.git",
"default_branch": "main"
},
{
"name": "olive.libreries.CRMIntegration",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/libraries/olive.libreries.crmintegration.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/libraries/olive.libreries.crmintegration.git",
"default_branch": "development"
}
]
},
{
"name": "Microfrontends",
"projects": [
{
"name": "olive-ecommerce-reverse-proxy",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/microfrontends/olive-ecommerce-reverse-proxy.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/microfrontends/olive-ecommerce-reverse-proxy.git",
"default_branch": "development"
},
{
"name": "olive-mff-ecommerce-coverage-status",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/microfrontends/olive-mff-ecommerce-coverage-status.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/microfrontends/olive-mff-ecommerce-coverage-status.git",
"default_branch": "development"
},
{
"name": "olive-mff-ecommerce-payment",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/microfrontends/olive-mff-ecommerce-payment.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/microfrontends/olive-mff-ecommerce-payment.git",
"default_branch": "development"
},
{
"name": "olive-mff-ecommerce-personal-info",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/microfrontends/olive-mff-ecommerce-personal-info.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/microfrontends/olive-mff-ecommerce-personal-info.git",
"default_branch": "development"
},
{
"name": "olive-mff-ecommerce-purchase-summary",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/microfrontends/olive-mff-ecommerce-purchase-summary.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/microfrontends/olive-mff-ecommerce-purchase-summary.git",
"default_branch": "main"
},
{
"name": "olive-mff-ecommerce-shopping-cart",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/microfrontends/olive-mff-ecommerce-shopping-cart.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/microfrontends/olive-mff-ecommerce-shopping-cart.git",
"default_branch": "development"
},
{
"name": "olive-mfp-ecommerce-coverage-status",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/microfrontends/olive-mfp-ecommerce-coverage-status.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/microfrontends/olive-mfp-ecommerce-coverage-status.git",
"default_branch": "development"
},
{
"name": "olive-mfp-ecommerce-payment",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/microfrontends/olive-mfp-ecommerce-payment.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/microfrontends/olive-mfp-ecommerce-payment.git",
"default_branch": "development"
},
{
"name": "olive-mfp-ecommerce-personal-details",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/microfrontends/olive-mfp-ecommerce-personal-details.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/microfrontends/olive-mfp-ecommerce-personal-details.git",
"default_branch": "development"
},
{
"name": "olive-mfp-ecommerce-personal-inf",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/microfrontends/olive-mfp-ecommerce-personal-inf.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/microfrontends/olive-mfp-ecommerce-personal-inf.git",
"default_branch": "development"
},
{
"name": "olive-mfp-ecommerce-purchase-summary",
"url": "git@gitlab.com:uproarcar/olive-com/team-ludus/microfrontends/olive-mfp-ecommerce-purchase-summary.git",
"http_url": "https://gitlab.com/uproarcar/olive-com/team-ludus/microfrontends/olive-mfp-ecommerce-purchase-summary.git",