-
Notifications
You must be signed in to change notification settings - Fork 508
/
.openpublishing.redirection.json
1743 lines (1740 loc) · 83.1 KB
/
.openpublishing.redirection.json
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
{
"redirections": [
{
"source_path": "articles/mobile-apps/azure-mobile-apps/overview.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/overview",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/howto/authentication.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/howto/authentication",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/howto/data-sync.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/howto/data-sync",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/howto/client/cordova.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/howto/client/cordova",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/howto/client/dotnet-v4.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/howto/client/dotnet-v4",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/howto/client/dotnet.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/howto/client/dotnet",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/howto/server/dotnet-core.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/howto/server/dotnet-core",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/howto/server/dotnet-framework.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/howto/server/dotnet-framework",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/howto/server/nodejs.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/howto/server/nodejs",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/avalonia/authentication.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/avalonia/authentication",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/avalonia/index.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/avalonia/index",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/avalonia/offline.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/avalonia/offline",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/cordova/authentication.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/cordova/authentication",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/cordova/index.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/cordova/index",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/cordova/offline.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/cordova/offline",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/maui/authentication.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/maui/authentication",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/maui/index.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/maui/index",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/maui/offline.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/maui/offline",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/uno/authentication.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/uno/authentication",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/uno/index.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/uno/index",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/uno/offline.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/uno/offline",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/uwp/authentication.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/uwp/authentication",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/uwp/index.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/uwp/index",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/uwp/offline.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/uwp/offline",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/winui/authentication.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/winui/authentication",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/winui/index.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/winui/index",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/winui/offline.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/winui/offline",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/wpf/authentication.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/wpf/authentication",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/wpf/index.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/wpf/index",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/wpf/offline.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/wpf/offline",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/xamarin-android/authentication.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/xamarin-android/authentication",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/xamarin-android/index.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/xamarin-android/index",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/xamarin-android/offline.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/xamarin-android/offline",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/xamarin-forms/authentication.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/xamarin-forms/authentication",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/xamarin-forms/index.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/xamarin-forms/index",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/xamarin-forms/offline.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/xamarin-forms/offline",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/xamarin-ios/authentication.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/xamarin-ios/authentication",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/xamarin-ios/index.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/xamarin-ios/index",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-mobile-apps/quickstarts/xamarin-ios/offline.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-mobile-apps/quickstarts/xamarin-ios/offline",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/index.yml",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/index",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/choose-mobile-framework.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/choose-mobile-framework",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/mobile-cloud-development-stages.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/mobile-cloud-development-stages",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/authentication.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/authentication",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/data-storage.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/data-storage",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-storage.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-storage",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-content-delivery-network.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-content-delivery-network",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/serverless-compute.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/serverless-compute",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/real-time-communication.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/real-time-communication",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/code-hosting-services.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/code-hosting-services",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/devops.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/devops",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/continuous-integration.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/continuous-integration",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/test-mobile-apps.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/test-mobile-apps",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/continuous-delivery.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/continuous-delivery",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/analytics.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/analytics",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/diagnostics.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/diagnostics",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/push-notifications.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/push-notifications",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/notification-hubs-backend-service-xamarin-forms.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/notification-hubs-backend-service-xamarin-forms",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/notification-hubs-backend-service-react-native.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/notification-hubs-backend-service-react-native",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/notification-hubs-backend-service-flutter.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/notification-hubs-backend-service-flutter",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/cognitive-services.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/cognitive-services",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-maps.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-maps",
"redirect_document_id": false
},
{
"source_path": "articles/mobile-apps/azure-search.md",
"redirect_url": "/previous-versions/azure/developer/mobile-apps/azure-search",
"redirect_document_id": false
},
{
"source_path": "articles/javascript/end-to-end/contoso-real-estate-developer-solutions.md",
"redirect_url": "/azure/developer/javascript",
"redirect_document_id": false
},
{
"source_path": "articles/javascript/end-to-end/contoso-real-estate-developer-tools.md",
"redirect_url": "/azure/developer/javascript",
"redirect_document_id": false
},
{
"source_path": "articles/javascript/end-to-end/contoso-real-estate-get-started.md",
"redirect_url": "/azure/developer/javascript",
"redirect_document_id": false
},
{
"source_path": "articles/javascript/end-to-end/contoso-real-estate-infrastructure.md",
"redirect_url": "/azure/developer/javascript",
"redirect_document_id": false
},
{
"source_path": "articles/javascript/end-to-end/contoso-real-estate-run-codespaces.md",
"redirect_url": "/azure/developer/javascript",
"redirect_document_id": false
},
{
"source_path": "articles/javascript/end-to-end/contoso-real-estate-serverless-api-migration.md",
"redirect_url": "/azure/developer/javascript",
"redirect_document_id": false
},
{
"source_path": "articles/javascript/end-to-end/contoso-real-estate-serverless-api.md",
"redirect_url": "/azure/developer/javascript",
"redirect_document_id": false
},
{
"source_path": "articles/javascript/end-to-end/contoso-real-estate-test-api-solution.md",
"redirect_url": "/azure/developer/javascript",
"redirect_document_id": false
},
{
"source_path": "articles/javascript/end-to-end/contoso-real-estate-user-authentication.md",
"redirect_url": "/azure/developer/javascript",
"redirect_document_id": false
},
{
"source_path": "articles/javascript/end-to-end/contoso-real-estate-user-scenarios.md",
"redirect_url": "/azure/developer/javascript",
"redirect_document_id": false
},
{
"source_path": "articles/javascript/how-to/configure-web-app-settings.md",
"redirect_url": "/azure/developer/javascript"
},
{
"source_path": "articles/javascript/how-to/select-hosting-service.md",
"redirect_url": "/azure/developer/intro/hosting-apps-on-azure"
},
{
"source_path": "articles/javascript/azure-ai-for-javascript-developers.md",
"redirect_url": "/azure/javascript/ai/azure-ai-for-javascript-developers"
},
{
"source_path": "articles/javascript/chat-app-with-separate-front-back-end.md",
"redirect_url": "/azure/javascript/ai/chat-app-with-separate-front-back-end"
},
{
"source_path": "articles/javascript/get-started-app-chat-assistants-function-calling.md",
"redirect_url": "/azure/javascript/ai/get-started-app-chat-assistants-function-calling"
},
{
"source_path": "articles/javascript/get-started-app-chat-evaluations.md",
"redirect_url": "/azure/javascript/ai/get-started-app-chat-evaluations"
},
{
"source_path": "articles/javascript/get-started-app-chat-scaling-with-azure-api-management.md",
"redirect_url": "/azure/javascript/ai/get-started-app-chat-scaling-with-azure-api-management"
},
{
"source_path": "articles/javascript/get-started-app-chat-scaling-with-azure-container-apps.md",
"redirect_url": "/azure/javascript/ai/get-started-app-chat-scaling-with-azure-container-apps"
},
{
"source_path": "articles/javascript/get-started-app-chat-template-langchainjs.md",
"redirect_url": "/azure/javascript/ai/get-started-app-chat-template-langchainjs"
},
{
"source_path": "articles/javascript/get-started-app-chat-template.md",
"redirect_url": "/azure/virtual-machines"
},
{
"source_path": "articles/javascript/openai-cli.md",
"redirect_url": "/azure/ai-services/openai"
},
{
"source_path": "articles/javascript/how-to/with-visual-studio-code/containerize-local-project.md",
"redirect_url": "https://code.visualstudio.com/docs/containers/quickstart-node"
},
{
"source_path": "articles/javascript/how-to/with-azure-sdk/create-manage-virtual-machine.md",
"redirect_url": "/azure/developer/javascript/"
},
{
"source_path": "articles/javascript/tutorial/azure-function-cosmos-db-mongo-api.md",
"redirect_url": "/azure/azure-functions/functions-add-output-binding-cosmos-db-vs-code?pivots=programming-language-javascript"
},
{
"source_path": "articles/javascript/end-to-end/contoso-real-estate-test-ui-solution.md",
"redirect_url": "/azure/developer/javascript/end-to-end/contoso-real-estate-test-api-solution"
},
{
"source_path": "articles/javascript/core/automate-tasks-with-azure-cli.md",
"redirect_url": "/cli/azure/azure-cli-learn-bash"
},
{
"source_path": "articles/javascript/how-to/with-azure-sdk/stop-start-virtual-machine.md",
"redirect_url": "/cli/azure/vm"
},
{
"source_path": "articles/javascript/how-to/with-azure-sdk/list-resource-operation-history.md",
"redirect_url": "/cli/azure/monitor"
},
{
"source_path":"articles/javascript/how-to/add-custom-domain-to-web-app.md",
"redirect_url": "/azure/app-service/tutorial-secure-domain-certificate"
},
{
"source_path":"articles/javascript/how-to/with-azure-cli/create-container-registry-resource.md",
"redirect_url": "/azure/container-registry/container-registry-get-started-azure-cli"
},
{
"source_path":"articles/javascript/how-to/with-authentication/static-web-app-with-api/add-mongodb-database-to-api.md",
"redirect_url": "/azure/active-directory-b2c/enable-authentication-react-spa-app"
},
{
"source_path":"articles/javascript/how-to/with-authentication/static-web-app-with-api/configure-source-code-for-msal.md",
"redirect_url": "/azure/active-directory-b2c/enable-authentication-react-spa-app"
},
{
"source_path":"articles/javascript/how-to/with-authentication/static-web-app-with-api/deploy-static-web-app-to-azure.md",
"redirect_url": "/azure/active-directory-b2c/enable-authentication-react-spa-app"
},
{
"source_path":"articles/javascript/how-to/with-authentication/static-web-app-with-api/introduction.md",
"redirect_url": "/azure/active-directory-b2c/enable-authentication-react-spa-app"
},
{
"source_path":"articles/javascript/how-to/with-authentication/static-web-app-with-api/register-application-with-identity.md",
"redirect_url": "/azure/active-directory-b2c/enable-authentication-react-spa-app"
},
{
"source_path":"articles/javascript/how-to/with-authentication/register-application-with-identity.md",
"redirect_url": "/azure/active-directory-b2c/enable-authentication-react-spa-app"
},
{
"source_path":"articles/javascript/how-to/with-web-app/use-secret-environment-variables.md",
"redirect_url": "/azure/cosmos-db/store-credentials-key-vault"
},
{
"source_path":"articles/javascript/database-developer-guide.md",
"redirect_url": "https://azure.microsoft.com/product-categories/databases/"
},
{
"source_path":"articles/javascript/composable-cloud-contoso-real-estate.md",
"redirect_url": "/azure/developer/javascript/end-to-end/contoso-real-estate-get-started"
},
{ "source_path": "articles/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-01.md",
"redirect_url": "/azure/app-service/quickstart-custom-container?tabs=node&pivots=container-linux-vscode"
},
{ "source_path": "articles/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-02.md",
"redirect_url": "/azure/app-service/quickstart-custom-container?tabs=node&pivots=container-linux-vscode"
},
{ "source_path": "articles/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-03.md",
"redirect_url": "/azure/app-service/quickstart-custom-container?tabs=node&pivots=container-linux-vscode"
},
{ "source_path": "articles/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-04.md",
"redirect_url": "/azure/app-service/quickstart-custom-container?tabs=node&pivots=container-linux-vscode"
},
{ "source_path": "articles/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-05.md",
"redirect_url": "/azure/app-service/quickstart-custom-container?tabs=node&pivots=container-linux-vscode"
},
{ "source_path": "articles/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-06.md",
"redirect_url": "/azure/app-service/quickstart-custom-container?tabs=node&pivots=container-linux-vscode"
},
{ "source_path": "articles/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-07.md",
"redirect_url": "/azure/app-service/quickstart-custom-container?tabs=node&pivots=container-linux-vscode"
},
{ "source_path": "articles/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-08.md",
"redirect_url": "/azure/app-service/quickstart-custom-container?tabs=node&pivots=container-linux-vscode"
},
{ "source_path": "articles/javascript/how-to/with-web-app/static-web-app-with-swa-cli/introduction.md",
"redirect_url": "/azure/developer/javascript/how-to/with-web-app/static-web-app-with-swa-cli"
},
{ "source_path": "articles/javascript/how-to/with-web-app/static-web-app-with-swa-cli/create-github-repo.md",
"redirect_url": "/azure/developer/javascript/how-to/with-web-app/static-web-app-with-swa-cli"
},
{ "source_path": "articles/javascript/how-to/with-web-app/static-web-app-with-swa-cli/create-react-app.md",
"redirect_url": "/azure/developer/javascript/how-to/with-web-app/static-web-app-with-swa-cli"
},
{ "source_path": "articles/javascript/how-to/with-web-app/static-web-app-with-swa-cli/create-static-web-app.md",
"redirect_url": "/azure/developer/javascript/how-to/with-web-app/static-web-app-with-swa-cli"
},
{ "source_path": "articles/javascript/how-to/with-web-app/static-web-app-with-swa-cli/create-function-api-app.md",
"redirect_url": "/azure/developer/javascript/how-to/with-web-app/static-web-app-with-swa-cli"
},
{ "source_path": "articles/javascript/how-to/with-web-app/static-web-app-with-swa-cli/connect-client-to-api.md",
"redirect_url": "/azure/developer/javascript/how-to/with-web-app/static-web-app-with-swa-cli"
},
{ "source_path": "articles/javascript/how-to/with-web-app/static-web-app-with-swa-cli/add-authentication.md",
"redirect_url": "/azure/developer/javascript/how-to/with-web-app/static-web-app-with-swa-cli"
},
{ "source_path": "articles/javascript/how-to/with-web-app/static-web-app-with-swa-cli/clean-up-swa-auth-resources.md",
"redirect_url": "/azure/developer/javascript/how-to/with-web-app/static-web-app-with-swa-cli"
},
{ "source_path": "articles/javascript/how-to/with-web-app/azure-function-resource-group-management/add-delete-functions-redeploy.md",
"redirect_url": "/azure/developer/javascript/how-to/with-web-app/azure-function-resource-group-management"
},
{ "source_path": "articles/javascript/how-to/with-web-app/azure-function-resource-group-management/clean-up-resources.md",
"redirect_url": "/azure/developer/javascript/how-to/with-web-app/azure-function-resource-group-management"
},
{ "source_path": "articles/javascript/how-to/with-web-app/azure-function-resource-group-management/create-function-app.md",
"redirect_url": "/azure/developer/javascript/how-to/with-web-app/azure-function-resource-group-management"
},
{ "source_path": "articles/javascript/how-to/with-web-app/azure-function-resource-group-management/deploy-azure-function-with-visual-studio-code.md",
"redirect_url": "/azure/developer/javascript/how-to/with-web-app/azure-function-resource-group-management"
},
{ "source_path": "articles/javascript/how-to/with-web-app/azure-function-resource-group-management/view-query-application-logs.md",
"redirect_url": "/azure/developer/javascript/how-to/with-web-app/azure-function-resource-group-management"
},
{ "source_path": "articles/javascript/how-to/with-web-app/azure-function-resource-group-management/introduction.md",
"redirect_url": "/azure/developer/javascript/how-to/with-web-app/azure-function-resource-group-management"
},
{ "source_path": "articles/lab/index.yml",
"redirect_url": "/azure/developer/python"
},
{ "source_path": "articles/lab/quickstart-python-flask.md",
"redirect_url": "/azure/developer/python"
},
{ "source_path": "articles/lab/quickstart-python-flask-minimized.md",
"redirect_url": "/azure/developer/python"
},
{ "source_path": "articles/lab/quickstart-python-flask-multipage.yml",
"redirect_url": "/azure/developer/python"
},
{ "source_path": "articles/lab/tool-tip-metrics.md",
"redirect_url": "/azure/developer/python"
},
{
"source_path": "articles/javascript/tutorial/nodejs-virtual-machine-vm/introduction.md",
"redirect_url": "/azure/developer/javascript/tutorial/run-nodejs-virtual-machine"
},
{
"source_path": "articles/javascript/tutorial/nodejs-virtual-machine-vm/create-azure-monitoring-application-insights-web-resource.md",
"redirect_url": "/azure/developer/javascript/tutorial/run-nodejs-virtual-machine"
},
{
"source_path": "articles/javascript/tutorial/nodejs-virtual-machine-vm/create-linux-virtual-machine-azure-cli.md",
"redirect_url": "/azure/developer/javascript/tutorial/run-nodejs-virtual-machine"
},
{
"source_path": "articles/javascript/tutorial/nodejs-virtual-machine-vm/connect-linux-virtual-machine-ssh.md",
"redirect_url": "/azure/developer/javascript/tutorial/run-nodejs-virtual-machine"
},
{
"source_path": "articles/javascript/tutorial/nodejs-virtual-machine-vm/azure-monitor-application-insights-nodejs-expressjs-code.md",
"redirect_url": "/azure/developer/javascript/tutorial/run-nodejs-virtual-machine"
},
{
"source_path": "articles/javascript/tutorial/nodejs-virtual-machine-vm/azure-monitor-application-insights-logs.md",
"redirect_url": "/azure/developer/javascript/tutorial/run-nodejs-virtual-machine"
},
{
"source_path": "articles/javascript/tutorial/nodejs-virtual-machine-vm/clean-up-resources.md",
"redirect_url": "/azure/developer/javascript/tutorial/run-nodejs-virtual-machine"
},
{
"source_path": "articles/javascript/whats-new-developer-advocacy.md",
"redirect_url": "/azure/developer/javascript"
},
{
"source_path": "articles/javascript/whats-new-docs.md",
"redirect_url": "/azure/developer/javascript"
},
{
"source_path": "articles/javascript/how-to/with-database/getting-started.md",
"redirect_url": "/azure/developer/javascript/database-developer-guide"
},
{
"source_path": "articles/javascript/how-to/with-database/use-azure-cache-for-redis-db.md",
"redirect_url": "/azure/developer/javascript/database-developer-guide"
},
{
"source_path": "articles/javascript/how-to/with-database/use-cassandra-as-cosmos-db.md",
"redirect_url": "/azure/developer/javascript/database-developer-guide"
},
{
"source_path": "articles/javascript/how-to/with-database/use-mongodb-as-cosmosdb.md",
"redirect_url": "/azure/developer/javascript/database-developer-guide"
},
{
"source_path": "articles/javascript/how-to/with-database/use-mysql-mariadb.md",
"redirect_url": "/azure/developer/javascript/database-developer-guide"
},
{
"source_path": "articles/javascript/how-to/with-database/use-postgresql-db.md",
"redirect_url": "/azure/developer/javascript/database-developer-guide"
},
{
"source_path": "articles/javascript/how-to/with-database/use-sql-api-as-cosmos-db.md",
"redirect_url": "/azure/developer/javascript/database-developer-guide"
},
{
"source_path": "articles/javascript/how-to/common-javascript-tasks.md",
"redirect_url": "/azure/developer/javascript/core/use-azure-sdk"
},
{ "source_path": "articles/javascript/core/nodejs-sdk-azure-authenticate.md",
"redirect_url": "/azure/developer/javascript/sdk/authentication/local-development-environment-service-principal"
},
{ "source_path": "articles/javascript/how-to/with-web-app/graphql/get-started.md",
"redirect_url": "/azure/developer/javascript/graphql-developer-guide"
},
{ "source_path": "articles/javascript/how-to/with-web-app/graphql/static-web-app-graphql/introduction.md",
"redirect_url": "/azure/developer/javascript/graphql-developer-guide"
},
{ "source_path": "articles/javascript/how-to/with-web-app/graphql/static-web-app-graphql/graphql-basics.md",
"redirect_url": "/azure/developer/javascript/graphql-developer-guide"
},
{ "source_path": "articles/javascript/how-to/with-web-app/graphql/static-web-app-graphql/local-development.md",
"redirect_url": "/azure/developer/javascript/graphql-developer-guide"
},
{ "source_path": "articles/javascript/how-to/with-web-app/graphql/static-web-app-graphql/create-configure-cosmos-db.md",
"redirect_url": "/azure/developer/javascript/graphql-developer-guide"
},
{ "source_path": "articles/javascript/how-to/with-web-app/graphql/static-web-app-graphql/remote-deployment.md",
"redirect_url": "/azure/developer/javascript/graphql-developer-guide"
},
{ "source_path": "articles/javascript/how-to/with-web-app/static-web-app-nextjs-graphql/getting-started.md",
"redirect_url": "/azure/developer/javascript/graphql-developer-guide"
},
{ "source_path": "articles/javascript/how-to/with-web-app/static-web-app-nextjs-graphql/create-database-upload-data.md",
"redirect_url": "/azure/developer/javascript/graphql-developer-guide"
},
{ "source_path": "articles/javascript/how-to/with-web-app/static-web-app-nextjs-graphql/create-translator-resource.md",
"redirect_url": "/azure/developer/javascript/graphql-developer-guide"
},
{ "source_path": "articles/javascript/how-to/with-web-app/static-web-app-nextjs-graphql/deploy-trivia-game.md",
"redirect_url": "/azure/developer/javascript/graphql-developer-guide"
},
{ "source_path": "articles/javascript/how-to/with-web-app/graphql/azure-function-hello-world.md",
"redirect_url": "/azure/developer/javascript/graphql-developer-guide"
},
{ "source_path": "articles/javascript/how-to/with-web-app/graphql/azure-function-crud-mutation.md",
"redirect_url": "/azure/developer/javascript/graphql-developer-guide"
},
{
"source_path": "articles/javascript/how-to/with-web-app/add-authentication-to-web-app.md",
"redirect_url": "/azure/app-service/scenario-secure-app-authentication-app-service-as-user"
},
{
"source_path": "articles/javascript/tutorial-vscode-serverless-node-01.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-serverless-node-install.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial-vscode-serverless-node-02.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-serverless-node-create-local.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial-vscode-serverless-node-03.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-serverless-node-test-local.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial-vscode-serverless-node-04.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-serverless-node-deploy-hosting.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial-vscode-serverless-node-05.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-serverless-node-remove-resource.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial/vscode-function-app-http-trigger/tutorial-vscode-serverless-node-create-local.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial/vscode-function-app-http-trigger/tutorial-vscode-serverless-node-database-integration.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial/vscode-function-app-http-trigger/tutorial-vscode-serverless-node-deploy-hosting.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial/vscode-function-app-http-trigger/tutorial-vscode-serverless-node-install.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial/vscode-function-app-http-trigger/tutorial-vscode-serverless-node-remove-resource.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial/vscode-function-app-http-trigger/tutorial-vscode-serverless-node-test-local.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/how-to/with-azure-cli/create-postgresql-server-resource.md",
"redirect_url": "/azure/developer/javascript/how-to/with-database/use-postgresql-db"
},
{
"source_path": "articles/javascript/how-to/with-azure-cli/create-mysql-db.md",
"redirect_url": "/azure/developer/javascript/how-to/with-database/use-mysql-mariadb?tabs=MySQL"
},
{
"source_path": "articles/javascript/how-to/with-azure-cli/create-mariadb.md",
"redirect_url": "/azure/developer/javascript/how-to/with-database/use-mysql-mariadb?tabs=MySQL"
},
{
"source_path": "articles/javascript/how-to/with-azure-cli/create-cosmos-sql-api-resource.md",
"redirect_url": "/azure/developer/javascript/how-to/with-database/use-sql-api-as-cosmos-db"
},
{
"source_path": "articles/javascript/how-to/with-azure-cli/create-cassandra-db.md",
"redirect_url": "/azure/developer/javascript/how-to/with-database/use-cassandra-as-cosmos-db"
},
{
"source_path": "articles/javascript/how-to/with-azure-cli/create-cache-for-redis-db.md",
"redirect_url": "/azure/developer/javascript/how-to/with-database/use-azure-cache-for-redis-db"
},
{
"source_path": "articles/javascript/how-to/with-azure-cli/create-mongodb-cosmosdb.md",
"redirect_url": "/azure/developer/javascript/how-to/with-database/use-mongodb-as-cosmosdb?tabs=azure-cli%2Cmongodb"
},
{
"source_path": "articles/javascript/how-to/with-azure-cli/configure-app-service-custom-domain-name.md",
"redirect_url": "/azure/app-service/app-service-web-tutorial-custom-domain"
},
{
"source_path": "articles/javascript/tutorial/deploy-deno-app-azure-app-service-azure-cli.md",
"redirect_url": "/azure/developer/javascript/tutorial/nodejs-virtual-machine-vm/introduction"
},
{
"source_path": "articles/javascript/tutorial/static-web-app/introduction.md",
"redirect_url": "/azure/developer/javascript/tutorial/static-web-app-image-analysis"
},
{
"source_path": "articles/javascript/tutorial/static-web-app/application-architecture.md",
"redirect_url": "/azure/developer/javascript/tutorial/static-web-app-image-analysis"
},
{
"source_path": "articles/javascript/tutorial/static-web-app/run-the-react-cognitive-services-image-analyzer-app-locally.md",
"redirect_url": "/azure/developer/javascript/tutorial/static-web-app-image-analysis"
},
{
"source_path": "articles/javascript/tutorial/static-web-app/create-computer-vision-resource-use-in-code.md",
"redirect_url": "/azure/developer/javascript/tutorial/static-web-app-image-analysis"
},
{
"source_path": "articles/javascript/tutorial/static-web-app/create-static-web-app-visual-studio-code-extension.md",
"redirect_url": "/azure/developer/javascript/tutorial/static-web-app-image-analysis"
},
{
"source_path": "articles/javascript/tutorial/static-web-app/add-computer-vision-react-app.md",
"redirect_url": "/azure/developer/javascript/tutorial/static-web-app-image-analysis"
},
{
"source_path": "articles/javascript/tutorial/static-web-app/clean-up-resources.md",
"redirect_url": "/azure/developer/javascript/tutorial/static-web-app-image-analysis"
},
{
"source_path": "articles/javascript/how-to/with-database/use-mariadb.md",
"redirect_url": "/azure/developer/javascript/how-to/with-database/use-mysql-mariadb"
},
{
"source_path": "articles/javascript/how-to/with-database/use-mysql-db.md",
"redirect_url": "/azure/developer/javascript/how-to/with-database/use-mysql-mariadb"
},
{
"source_path": "articles/javascript/how-to/with-web-app/azure-function-resource-group-management/view-and-query-application-logs.md",
"redirect_url": "/azure/developer/javascript/how-to/with-web-app/azure-function-resource-group-management/view-query-application-logs"
},
{
"source_path": "articles/javascript/how-to/with-web-app/azure-function-resource-group-management/create-function-app-for-resource-groups.md",
"redirect_url": "/azure/developer/javascript/how-to/with-web-app/azure-function-resource-group-management/create-function-app"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-06.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-04#make-change-and-deploy-to-azure-app-service-from-local-git"
},
{
"source_path": "articles/javascript/how-to/deploy-containers.md",
"redirect_url": "/azure/developer/javascript/how-to/deploy-web-app"
},
{
"source_path": "articles/javascript/how-to/integrate-database.md",
"redirect_url": "/azure/developer/javascript/how-to/with-database/getting-started"
},
{
"source_path": "articles/javascript/core/node-sdk-azure-authenticate.md",
"redirect_url": "/azure/developer/javascript/core/nodejs-sdk-azure-authenticate"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-static-website-node/tutorial-vscode-static-website-node-01.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-static-website-node/tutorial-vscode-static-website-node-02.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-static-website-node/tutorial-vscode-static-website-node-03.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-static-website-node/tutorial-vscode-static-website-node-04.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/tutorial/client/get-started.md",
"redirect_url": "/azure/developer/javascript/how-to/create-static-web-app"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-static-website-node/tutorial-vscode-static-website-node-05.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-static-website-node/tutorial-vscode-static-website-node-06.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/core/node-sdk-azure-authenticate-principal.md",
"redirect_url": "/azure/developer/javascript/core/nodejs-sdk-azure-authenticate"
},
{
"source_path": "articles/javascript/concepts/identity-authentication-users.md",
"redirect_url": "/azure/developer/javascript/core/nodejs-sdk-azure-authenticate"
},
{
"source_path": "articles/javascript/how-to/with-sdk/set-up-development-environment.md",
"redirect_url": "/azure/developer/javascript/core/nodejs-sdk-azure-authenticate"
},
{
"source_path": "articles/javascript/how-to/create-static-site.md",
"redirect_url": "/azure/developer/javascript/how-to/create-static-web-app"
},
{
"source_path": "articles/javascript/how-to/develop-nodejs-on-azure.md",
"redirect_url": "/azure/developer/javascript/tutorial/deploy-nodejs-mongodb-app-service-from-visual-studio-code"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-cli-node-01.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-01"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-cli-node-02.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-02"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-cli-node-03.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-03"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-cli-node-04.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-04"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-cli-node-06.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-06"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-cli-node-05.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-05"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-cli-node-07.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-07"
},
{
"source_path": "articles/javascript/tutorial-vscode-docker-node-01.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-01"
},
{
"source_path": "articles/javascript/tutorial-vscode-docker-node-02.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-02"
},
{
"source_path": "articles/javascript/tutorial-vscode-docker-node-03.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-03"
},
{
"source_path": "articles/javascript/tutorial-vscode-docker-node-04.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-04"
},
{
"source_path": "articles/javascript/tutorial-vscode-docker-node-05.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-05"
},
{
"source_path": "articles/javascript/tutorial-vscode-docker-node-06.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-06"
},
{
"source_path": "articles/javascript/tutorial-vscode-docker-node-07.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-07"
},
{
"source_path": "articles/javascript/tutorial-vscode-docker-node-08.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-08"
},
{
"source_path": "articles/javascript/tutorial-vscode-static-website-node-01.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/tutorial-vscode-static-website-node-02.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/tutorial-vscode-static-website-node-03.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/tutorial-vscode-static-website-node-04.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/tutorial-vscode-static-website-node-05.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/tutorial-vscode-static-website-node-06.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-app-service-node-01.md",
"redirect_url": "/azure/developer/javascript/tutorial/deploy-nodejs-azure-app-service-with-visual-studio-code"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-app-service-node-02.md",
"redirect_url": "/azure/developer/javascript/tutorial/deploy-nodejs-azure-app-service-with-visual-studio-code"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-app-service-node-03.md",
"redirect_url": "/azure/developer/javascript/tutorial/deploy-nodejs-azure-app-service-with-visual-studio-code"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-app-service-node-04.md",
"redirect_url": "/azure/developer/javascript/tutorial/deploy-nodejs-azure-app-service-with-visual-studio-code"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-app-service-node-05.md",
"redirect_url": "/azure/developer/javascript/tutorial/deploy-nodejs-azure-app-service-with-visual-studio-code"
},
{
"source_path": "articles/javascript/tutorial/deno-visual-studio-code-azure-app-service.yml",
"redirect_url": "/azure/developer/javascript/tutorial/deploy-deno-app-azure-app-service-azure-cli"
},
{
"source_path": "articles/javascript/tutorial/browser-file-upload.yml",
"redirect_url": "/azure/developer/javascript/tutorial/browser-file-upload-azure-storage-blob"
},
{
"source_path": "articles/javascript/tutorial/web-app-mongodb.yml",
"redirect_url": "/azure/developer/javascript/tutorial/deploy-nodejs-mongodb-app-service-from-visual-studio-code"
},
{
"source_path": "articles/javascript/tutorial-visual-studio-code-azure-app-service-deno-04.md",
"redirect_url": "/azure/developer/javascript/tutorial/deno-visual-studio-code-azure-app-service?preview=tutorialFeedback"
},