forked from feedhenry/fh-template-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.json
1676 lines (1676 loc) · 75 KB
/
global.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
{
"show": {
"projectTemplates": [{
"id": "bare_project",
"priority": 0.4,
"name": "Bare Project",
"description": "An empty project into which you can add apps and cloud instances",
"type": "default",
"icon": "icon-circle-blank",
"category": "Blank",
"screenshots": [{
"url": "public/img/templatePreview/blankproject_container.png"
}],
"appTemplates": []
}, {
"id": "sync_project",
"priority": 0.41,
"name": "Sync Framework Project",
"description": "An example Project using our Sync framework",
"type": "default",
"icon": "icon-refresh",
"category": "Samples",
"screenshots": [],
"appTemplates": [{
"id": "sync_cloud",
"name": "Sync Cloud App",
"type": "cloud_nodejs",
"docs": "https://raw.githubusercontent.com/feedhenry-templates/sync-cloud/master/README.md",
"repoUrl": "git://github.com/feedhenry-templates/sync-cloud.git",
"githubUrl": "https://github.com/feedhenry-templates/sync-cloud.git",
"repoBranch": "refs/heads/master",
"icon": "icon-cloud",
"category": "Sample Apps"
}, {
"id": "sync_app",
"name": "Sync App",
"type": "client_advanced_hybrid",
"repoUrl": "git://github.com/feedhenry-templates/sync-cordova-app.git",
"githubUrl": "https://github.com/feedhenry-templates/sync-cordova-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-cordova",
"category": "Sample Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/sync_app/cordova-sync.png"
}]
}, {
"id": "sync_ios_objectivec_app",
"name": "Sync iOS (Objective-C) App",
"type": "client_native_ios",
"repoUrl": "git://github.com/feedhenry-templates/sync-ios-app.git",
"githubUrl": "https://github.com/feedhenry-templates/sync-ios-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-apple",
"category": "Sample Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/sync_app/ios-sync.png"
}]
}, {
"id": "sync_ios_swift_app",
"name": "Sync iOS (Swift) App",
"type": "client_native_ios",
"repoUrl": "git://github.com/feedhenry-templates/sync-ios-swift.git",
"githubUrl": "https://github.com/feedhenry-templates/sync-ios-swift.git",
"repoBranch": "refs/heads/master",
"icon": "icon-apple",
"category": "Sample Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/sync_app/ios-sync.png"
}]
}, {
"id": "sync_android_app",
"name": "Sync Android App",
"type": "client_native_android",
"repoUrl": "git://github.com/feedhenry-templates/sync-android-app.git",
"githubUrl": "https://github.com/feedhenry-templates/sync-android-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-android",
"category": "Sample Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/sync_app/android-sync.png"
}]
}, {
"id": "sync_windows_app",
"name": "Sync Windows App",
"type": "client_native_windowsuniversal",
"repoUrl": "git://github.com/feedhenry-templates/sync-windows-app.git",
"githubUrl": "https://github.com/feedhenry-templates/sync-windows-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-windows8",
"category": "Sample Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/sync_app/windows-sync.png"
}]
}, {
"id": "sync_xamarin_app",
"name": "Sync Xamarin App",
"type": "client_xamarin",
"repoUrl": "git://github.com/feedhenry-templates/sync-xamarin-app.git",
"githubUrl": "https://github.com/feedhenry-templates/sync-xamarin-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-xamarin",
"category": "Sample Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/sync_app/android-sync.png"
}]
}]
}, {
"id": "ups_project",
"priority": 0.41,
"name": "AeroGear Community Push",
"description": "An example project which can use an external instance of the AeroGear UnifiedPush Server",
"type": "default",
"icon": "icon-plane",
"category": "Samples",
"screenshots": [],
"appTemplates": [{
"id": "ups_cloud",
"name": "Push Cloud App",
"type": "cloud_nodejs",
"repoUrl": "git://github.com/feedhenry-templates/Push-Hello-World-Cloud-App.git",
"githubUrl": "https://github.com/feedhenry-templates/Push-Hello-World-Cloud-App.git",
"repoBranch": "refs/heads/master",
"icon": "icon-cloud",
"category": "Sample Apps"
}, {
"id": "push_app",
"name": "Push Notifications Mobile Client",
"type": "client_advanced_hybrid",
"repoUrl": "git://github.com/feedhenry-templates/Push-Hello-World-Cordova-Light-Client.git",
"githubUrl": "https://github.com/feedhenry-templates/Push-Hello-World-Cordova-Light-Client.git",
"repoBranch": "refs/heads/master",
"icon": "icon-cordova",
"category": "Sample Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/push_hello_world/hybrid.png"
}]
}, {
"id": "push_console",
"name": "Push Console App",
"type": "webapp_advanced",
"repoUrl": "git://github.com/feedhenry-templates/Push-Hello-World-Console.git",
"githubUrl": "https://github.com/feedhenry-templates/Push-Hello-World-Console.git",
"repoBranch": "refs/heads/master",
"icon": "icon-nodejs",
"category": "Sample Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/push_hello_world/console.png"
}]
}]
}, {
"id": "saml_project",
"priority": 0.45,
"name": "SAML Example Project",
"description": "An example SAML Project to be used in conjuction with a SAML Service",
"type": "default",
"icon": "icon-lock",
"category": "Samples",
"screenshots": [],
"appTemplates": [{
"id": "saml_cloud",
"name": "SAML Cloud",
"type": "cloud_nodejs",
"docs": "https://raw.githubusercontent.com/feedhenry-templates/saml-cloud-app/master/README.md",
"repoUrl": "git://github.com/feedhenry-templates/saml-cloud-app.git",
"githubUrl": "https://github.com/feedhenry-templates/saml-cloud-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-cloud",
"category": "Sample Apps"
}, {
"id": "saml_app",
"name": "SAML Client",
"type": "client_advanced_hybrid",
"repoUrl": "git://github.com/feedhenry-templates/saml-cordova-app.git",
"githubUrl": "https://github.com/feedhenry-templates/saml-cordova-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-cordova",
"category": "Sample Apps",
"screenshots": []
}, {
"id": "saml_android",
"name": "SAML Android",
"type": "client_native_android",
"repoUrl": "git://github.com/feedhenry-templates/saml-android-app.git",
"githubUrl": "https://github.com/feedhenry-templates/saml-android-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-android",
"category": "Sample Apps",
"screenshots": []
}, {
"id": "saml_ios_objc",
"name": "SAML iOS (Objective-C)",
"type": "client_native_ios",
"repoUrl": "git://github.com/feedhenry-templates/saml-ios-app.git",
"githubUrl": "https://github.com/feedhenry-templates/saml-ios-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-apple",
"category": "Sample Apps",
"screenshots": []
}, {
"id": "saml_ios_swift",
"name": "SAML iOS (Swift)",
"type": "client_native_ios",
"repoUrl": "git://github.com/feedhenry-templates/saml-ios-swift.git",
"githubUrl": "https://github.com/feedhenry-templates/saml-ios-swift.git",
"repoBranch": "refs/heads/master",
"icon": "icon-apple",
"category": "Sample Apps",
"screenshots": []
}, {
"id": "saml_windows",
"name": "SAML Windows",
"type": "client_native_windowsuniversal",
"repoUrl": "git://github.com/feedhenry-templates/saml-windows-app.git",
"githubUrl": "https://github.com/feedhenry-templates/saml-windows-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-windows8",
"category": "Sample Apps",
"screenshots": []
}, {
"id": "saml_xamarin_app",
"name": "SAML Xamarin App",
"type": "client_xamarin",
"repoUrl": "git://github.com/feedhenry-templates/saml-xamarin-app.git",
"githubUrl": "https://github.com/feedhenry-templates/saml-xamarin-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-xamarin",
"category": "Sample Apps",
"screenshots": []
}]
}, {
"id": "pushstarter_project",
"priority": 0.96,
"name": "Push Notification Starter",
"description": "An example project using the push server integrated in the Platform",
"type": "default",
"icon": "icon-plane",
"category": "Samples",
"screenshots": [],
"appTemplates": [{
"id": "pushstarter_windows_app",
"name": "Simple Windows Push App",
"type": "client_native_windowsuniversal",
"repoUrl": "git://github.com/feedhenry-templates/pushstarter-windows-app.git",
"githubUrl": "https://github.com/feedhenry-templates/pushstarter-windows-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-windows8",
"category": "Sample Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/pushstarter_app/windows-push.png"
}]
}, {
"id": "pushstarter_xamarin_app",
"name": "Simple Xamarin Push App",
"type": "client_xamarin",
"repoUrl": "git://github.com/feedhenry-templates/pushstarter-xamarin-app.git",
"githubUrl": "https://github.com/feedhenry-templates/pushstarter-xamarin-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-xamarin",
"category": "Sample Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/pushstarter_app/android-push.png"
}]
}, {
"id": "pushstarter_android_app",
"name": "Simple Android Push App",
"type": "client_native_android",
"repoUrl": "git://github.com/feedhenry-templates/pushstarter-android-app.git",
"githubUrl": "https://github.com/feedhenry-templates/pushstarter-android-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-android",
"category": "Sample Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/pushstarter_app/android-push.png"
}]
}, {
"id": "pushstarter_cordova_app",
"name": "Simple Cordova Push App",
"type": "client_advanced_hybrid",
"repoUrl": "git://github.com/feedhenry-templates/pushstarter-cordova-app.git",
"githubUrl": "https://github.com/feedhenry-templates/pushstarter-cordova-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-cordova",
"category": "Sample Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/pushstarter_app/cordova-push.png"
}]
}, {
"id": "pushstarter_ios_objc-app",
"name": "Simple iOS (Objective-C) Push App",
"type": "client_native_ios",
"repoUrl": "git://github.com/feedhenry-templates/pushstarter-ios-app.git",
"githubUrl": "https://github.com/feedhenry-templates/pushstarter-ios-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-apple",
"category": "Sample Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/pushstarter_app/ios-push.png"
}]
}, {
"id": "pushstarter_ios_swift_app",
"name": "Simple iOS (Swift) Push App",
"type": "client_native_ios",
"repoUrl": "git://github.com/feedhenry-templates/pushstarter-ios-swift.git",
"githubUrl": "https://github.com/feedhenry-templates/pushstarter-ios-swift.git",
"repoBranch": "refs/heads/master",
"icon": "icon-apple",
"category": "Sample Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/pushstarter_app/ios-push.png"
}]
}, {
"id": "hello_push_mbaas_instance",
"name": "Cloud App",
"type": "cloud_nodejs",
"priority": 0.02,
"description": "Hello World Push Notification example",
"docs": "https://raw.githubusercontent.com/feedhenry-templates/hello-push-cloud/master/README.md",
"repoUrl": "git://github.com/feedhenry-templates/hello-push-cloud.git",
"githubUrl": "https://github.com/feedhenry-templates/hello-push-cloud.git",
"repoBranch": "refs/heads/master",
"icon": "icon-cloud",
"category": "Sample Apps"
}]
}, {
"id": "hello_world_project",
"priority": 1,
"name": "Hello World Project",
"description": "A FeedHenry primer project with one HTML5 client instance, and a cloud instance with a single endpoint",
"type": "default",
"icon": "icon-globe",
"category": "Sample Projects",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry-templates/helloworld-app/master/screenshots/blankproject_nocontainer.png"
}],
"appTemplates": ["hello_world_hybrid_app", "hello_world_mbaas_instance"]
}, {
"id": "advanced_webapp_hello_world_project",
"priority": 0.87,
"name": "Hello World Web App Project",
"description": "A FeedHenry primer project with one Web App.",
"type": "default",
"icon": "icon-nodejs",
"category": "Sample Projects",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-advanced-webapp-blank-app/master/screenshots/advanced_webappproject_nocontainer.png"
}],
"appTemplates": ["blank_advanced_webapp", "hello_world_mbaas_instance"]
}, {
"id": "cordova_project",
"priority": 0.86,
"name": "Cordova Hello World Project",
"description": "A FeedHenry primer project with one Cordova Client App and a cloud instance with a single endpoint",
"type": "default",
"icon": "icon-cordova",
"category": "Sample Projects",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry-templates/blank-cordova-app/master/screenshots/cordovaproject_nocontainer.png"
}],
"appTemplates": ["blank_advanced_hybrid_client", "hello_world_mbaas_instance"]
}, {
"id": "android_gradle_project",
"priority": 0.85,
"name": "Native Gradle Android Blank Project",
"description": "A FeedHenry primer project with one Android Client App and a cloud instance with a single endpoint",
"type": "default",
"icon": "icon-android",
"category": "Sample Projects",
"screenshots": [],
"appTemplates": ["blank_native_android_gradle_client", "hello_world_mbaas_instance"]
}, {
"id": "native_ios_blank_project",
"priority": 0.846,
"name": "Native iOS blank project",
"description": "A FeedHenry blank project pointing",
"type": "default",
"icon": "icon-apple",
"category": "Sample Projects",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry-templates/blank-ios-app/master/screenshots/iosproject_container.png"
}],
"appTemplates": ["native_ios_objectivec_blank_app", "native_ios_swift_blank_app", "hello_world_mbaas_instance"]
}, {
"id": "native_ios_helloworld_project",
"priority": 0.845,
"name": "Native iOS hello world project",
"description": "A FeedHenry primer project with one iOS Client App and a cloud instance with a single endpoint",
"type": "default",
"icon": "icon-apple",
"category": "Sample Projects",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry-templates/helloworld-ios/master/screenshots/iosproject_container.png"
}],
"appTemplates": ["native_ios_objectivec_helloworld_app", "native_ios_swift_helloworld_app", "hello_world_mbaas_instance"]
}, {
"id": "android_helloworld_project",
"priority": 0.845,
"name": "Native Android Hello World Project",
"description": "A FeedHenry primer project with one Android Client App and a cloud instance with a single endpoint",
"type": "default",
"icon": "icon-android",
"category": "Sample Projects",
"appTemplates": ["helloworld_native_android_gradle_client", "hello_world_mbaas_instance"]
}, {
"id": "windows_helloworld_project",
"priority": 0.845,
"name": "Native Windows Hello World Project",
"description": "A FeedHenry primer project with one iOS Client App and a cloud instance with a single endpoint",
"type": "default",
"icon": "icon-windows8",
"category": "Sample Projects",
"appTemplates": ["helloworld_native_windows_client", "hello_world_mbaas_instance"]
}, {
"id": "xamarin_helloworld_project",
"priority": 0.845,
"name": "Native Xamarin Hello World Project",
"description": "A FeedHenry primer project with a Android and iOS Client and a cloud instance with a single endpoint",
"type": "default",
"icon": "icon-xamarin",
"category": "Sample Projects",
"appTemplates": ["helloworld_native_xamarin_client", "hello_world_mbaas_instance"]
}, {
"id": "wp8_project",
"priority": 0.83,
"name": "Native Windows Phone 8 Hello World Project",
"description": "A FeedHenry primer project with one Windows Phone 8 Client App and a cloud instance with a single endpoint",
"type": "default",
"icon": "icon-windows8",
"category": "Sample Projects",
"screenshots": [],
"appTemplates": ["blank_native_windowsphone8", "hello_world_mbaas_instance"]
}, {
"id": "appcelerator_project",
"priority": 0.82,
"name": "Appcelerator Hello World Project",
"description": "A FeedHenry primer project with one Appcelerator Client App and a cloud instance with a single endpoint",
"type": "default",
"icon": "icon-appcelerator",
"category": "Sample Projects",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/blank_appcelerator/1.png"
}],
"appTemplates": ["blank_appcelerator", "hello_world_mbaas_instance"]
}, {
"id": "xamarin_project",
"priority": 0.81,
"name": "Xamarin Hello World Project",
"description": "A FeedHenry primer project with one Xamarin Client App and a cloud instance with a single endpoint",
"type": "default",
"icon": "icon-xamarin",
"category": "Sample Projects",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-xamarin-sdk-blank-app/master/screenshots/xamarinproject_container.png"
}],
"appTemplates": ["blank_xamarin", "hello_world_mbaas_instance"]
}, {
"id": "appforms_project",
"priority": 0.44,
"name": "Forms Project",
"description": "An AppForms project, for building Drag & Drop forms apps",
"type": "appforms",
"icon": "icon-tasks",
"category": "Forms",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/appforms-project-client/master/screenshots/appformsproject_nocontainer.png"
}],
"postProcessingOptions": {},
"configuration": {
"createFinishMessage": "Now select some Forms & a Theme to associate with your new Forms App",
"createFinishPath": "#projects/{{projectId}}/forms"
},
"appTemplates": [{
"id": "appforms_client",
"name": "Cordova Forms App",
"icon": "icon-check",
"type": "client_advanced_hybrid",
"repoUrl": "git://github.com/feedhenry/appforms-project-client.git",
"githubUrl": "https://github.com/feedhenry/appforms-project-client.git",
"repoBranch": "refs/heads/master",
"category": "Forms",
"description": "A template App for displaying Forms",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/appforms_client/1.png"
}]
}, "hello_world_mbaas_instance"]
}, {
"id": "welcome_project",
"priority": 0.95,
"description": "Demonstrates many features of the FeedHenry platform. The HTML5 client uses Bootstrap 3 and Backbone.js, and the cloud portion of this app illustrates the use of MongoDB, Redis and third party APIs.",
"name": "Welcome Project",
"type": "other",
"icon": "icon-edit",
"category": "Sample Projects",
"screenshots": [{
"url": "public/img/templatePreview/sampleproject_nocontainer.png"
}],
"appTemplates": [{
"id": "welcome_project_cloud",
"name": "Welcome Project-cloud",
"type": "cloud_nodejs",
"repoUrl": "git://github.com/feedhenry-templates/welcome-cloud.git",
"githubUrl": "https://github.com/feedhenry-templates/welcome-cloud.git",
"repoBranch": "refs/heads/master"
}, {
"id": "welcome_project_client",
"name": "Welcome Project-client",
"type": "client_advanced_hybrid",
"repoUrl": "git://github.com/feedhenry-templates/welcome-app.git",
"githubUrl": "https://github.com/feedhenry-templates/welcome-app.git",
"repoBranch": "refs/heads/master",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/welcome_project_client/1.png"
}]
}, {
"id": "welcome_project_android_gradle",
"name": "Welcome Project Android Gradle",
"type": "client_native_android",
"repoUrl": "git://github.com/feedhenry-templates/welcome-android-gradle.git",
"githubUrl": "https://github.com/feedhenry-templates/welcome-android-gradle.git",
"repoBranch": "refs/heads/master"
}, {
"id": "welcome_project_windows",
"name": "Welcome Project-windows",
"type": "client_native_windowsuniversal",
"repoUrl": "git://github.com/feedhenry-templates/welcome-cloud.git",
"githubUrl": "https://github.com/feedhenry-templates/welcome-windows.git",
"repoBranch": "refs/heads/master"
}, {
"id": "welcome_project_ios_objectivec",
"name": "Welcome Project iOS (Objective-C)",
"type": "client_native_ios",
"repoUrl": "git://github.com/feedhenry-templates/welcome-ios.git",
"githubUrl": "https://github.com/feedhenry-templates/welcome-ios.git",
"repoBranch": "refs/heads/master"
},
{
"id": "welcome_project_ios_swift",
"name": "Welcome Project iOS (Swift)",
"type": "client_native_ios",
"repoUrl": "git://github.com/feedhenry-templates/welcome-ios-swift.git",
"githubUrl": "https://github.com/feedhenry-templates/welcome-ios-swift.git",
"repoBranch": "refs/heads/master"
}]
}, {
"id": "mobile_spec_project",
"priority": 0.42,
"name": "Mobile Spec Project",
"description": "A project to run automated tests for Cordova APIs and show the test results in the cloud.",
"type": "other",
"icon": "icon-wrench",
"category": "Developer Tools",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry-templates/fh-mobile-spec-app/master/Screenshot.png"
}],
"appTemplates": [{
"id": "mobile_spec_project_cloud",
"name": "Mobile Spec Cloud App",
"type": "cloud_nodejs",
"repoUrl": "git://github.com/feedhenry-templates/fh-mobile-spec-cloud.git",
"githubUrl": "https://github.com/feedhenry-templates/fh-mobile-spec-cloud.git",
"repoBranch": "refs/heads/master"
}, {
"id": "mobile_spec_project_client",
"name": "Mobile Spec Cordova App",
"type": "client_advanced_hybrid",
"repoUrl": "git://github.com/feedhenry-templates/fh-mobile-spec-app.git",
"githubUrl": "https://github.com/feedhenry-templates/fh-mobile-spec-app.git",
"repoBranch": "refs/heads/master"
}, {
"id": "mobile_spec_project_portal",
"name": "Mobile Spec Web Portal",
"type": "webapp_basic",
"repoUrl": "git://github.com/feedhenry-templates/fh-mobile-spec-portal.git",
"githubUrl": "https://github.com/feedhenry-templates/fh-mobile-spec-portal.git",
"repoBranch": "refs/heads/master",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/mobile_spec_project_portal/1.png"
}, {
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/mobile_spec_project_portal/2.png"
}]
}]
}, {
"id": "angular_hello_world_project",
"priority": 0.38,
"name": "AngularJS Hello World Project",
"description": "An Example Project Demonstrating An AngularJS App Using the Feedhenry Javascript SDK to communicate with the cloud.",
"type": "other",
"icon": "icon-angular",
"category": "Sample Projects",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry-templates/quickstart-angular-app/master/screenshots/angularproject_nocontainer.png"
}],
"appTemplates": ["hello_world_angular_hybrid_app", "hello_world_mbaas_instance"]
}, {
"id": "backbone_hello_world_project",
"priority": 0.39,
"name": "Backbone Hello World Project",
"description": "An Example Project Demonstrating A Backbone App Using the Feedhenry Javascript SDK to communicate with the cloud.",
"type": "other",
"icon": "icon-backbone",
"category": "Sample Projects",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry-templates/quickstart-backbone-app/master/screenshots/backboneproject_nocontainer.png"
}],
"appTemplates": ["hello_world_backbone_hybrid_app", "hello_world_mbaas_instance"]
}, {
"id": "ionic_hello_world_project",
"priority": 0.37,
"name": "Ionic Hello World Project",
"description": "An Example Project Demonstrating An Ionic App Using the Feedhenry Javascript SDK to communicate with the cloud.",
"type": "other",
"icon": "icon-ionic",
"category": "Sample Projects",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry-templates/quickstart-ionic-app/master/screenshots/ionicproject_nocontainer.png"
}],
"appTemplates": ["hello_world_ionic_hybrid_app", "hello_world_mbaas_instance"]
},{
"id": "wfm_project",
"priority": 0.30,
"name": "WFM Demo Project",
"description": "A demo project showcasing the reusable WFM modules. Note: Using openshift.feedhenry.com access via your OpenShift account is limited to using the small OpenShift Gear. Due to WFM template's non-trivial functionality you may have stability issues using the small gear.",
"type": "default",
"icon": "icon-globe",
"category": "Tech Preview",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/wfm_project/wfm-mobile.png"
}],
"appTemplates": [{
"id": "wfm_mobile_demo_app",
"name": "WFM Demo Mobile App",
"type": "client_advanced_hybrid",
"repoUrl": "git://github.com/feedhenry-raincatcher/raincatcher-demo-mobile.git",
"githubUrl": "https://github.com/feedhenry-raincatcher/raincatcher-demo-mobile.git",
"repoBranch": "refs/heads/v2.0.0-alpha.8",
"icon": "icon-cordova",
"category": "Sample Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/wfm_project/wfm-mobile.png"
}]
},{
"id": "wfm_portal_demo_app",
"name": "WFM Demo Portal App",
"type": "webapp_advanced",
"repoUrl": "git://github.com/feedhenry-raincatcher/raincatcher-demo-portal.git",
"githubUrl": "https://github.com/feedhenry-raincatcher/raincatcher-demo-portal.git",
"repoBranch": "refs/heads/v2.0.0-alpha.8",
"category": "Sample Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/wfm_project/wfm-portal.png"
}]
},{
"id": "wfm_cloud_demo_app",
"name": "WFM Demo Cloud App",
"type": "cloud_nodejs",
"repoUrl": "git://github.com/feedhenry-raincatcher/raincatcher-demo-cloud.git",
"githubUrl": "https://github.com/feedhenry-raincatcher/raincatcher-demo-cloud.git",
"repoBranch": "refs/heads/v2.0.0-alpha.8",
"category": "Sample Apps"
}]
}],
"appTemplates": [{
"id": "hello_world_hybrid_app",
"name": "Cordova App",
"type": "client_advanced_hybrid",
"priority": 0.56,
"repoUrl": "git://github.com/feedhenry-templates/helloworld-app.git",
"githubUrl": "https://github.com/feedhenry-templates/helloworld-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-cordova",
"category": "Blank Apps",
"description": "An HTML5 Cordova App which echos your name via the Cloud",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/hello_world_hybrid_app/1.png"
}, {
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/hello_world_hybrid_app/2.png"
}]
}, {
"id": "hello_world_mbaas_instance",
"name": "Cloud App",
"type": "cloud_nodejs",
"priority": 0.02,
"description": "Hello World Node.js Express App which echos a username",
"docs": "https://raw.githubusercontent.com/feedhenry-templates/helloworld-cloud/master/README.md",
"repoUrl": "git://github.com/feedhenry-templates/helloworld-cloud.git",
"githubUrl": "https://github.com/feedhenry-templates/helloworld-cloud.git",
"repoBranch": "refs/heads/master",
"icon": "icon-cloud",
"category": "Sample Apps"
}, {
"id": "hello_world_mbaas_instance_cluster",
"name": "Cloud App - Clustered",
"type": "cloud_nodejs",
"priority": 0.01,
"description": "Clustered Hello World Node.js Express App which echos a username",
"docs": "https://raw.githubusercontent.com/feedhenry-templates/helloworld-cloud-cluster/master/README.md",
"repoUrl": "git://github.com/feedhenry-templates/helloworld-cloud-cluster.git",
"githubUrl": "https://github.com/feedhenry-templates/helloworld-cloud-cluster.git",
"repoBranch": "refs/heads/master",
"icon": "icon-cloud",
"category": "Sample Apps"
}, {
"id": "blank_native_android_gradle_client",
"name": "Blank Native Android Gradle App",
"type": "client_native_android",
"priority": 0.45,
"description": "Native Android Gradle Blank App which echos your name via the Cloud",
"repoUrl": "git://github.com/feedhenry-templates/blank-android-gradle.git",
"githubUrl": "https://github.com/feedhenry-templates/blank-android-gradle.git",
"repoBranch": "refs/heads/master",
"icon": "icon-android",
"category": "Blank Apps",
"screenshots": []
}, {
"id": "native_ios_objectivec_helloworld_app",
"name": "Native iOS (Objective-C) hello world app",
"type": "client_native_ios",
"priority": 0.445,
"description": "Native iOS (Objective-C) hello world app which echos your name via the Cloud",
"repoUrl": "git://github.com/feedhenry-templates/helloworld-ios.git",
"githubUrl": "https://github.com/feedhenry-templates/helloworld-ios.git",
"repoBranch": "refs/heads/master",
"icon": "icon-apple",
"category": "Blank Apps",
"screenshots": []
}, {
"id": "native_ios_swift_helloworld_app",
"name": "Native iOS (Swift) hello world app",
"type": "client_native_ios",
"priority": 0.445,
"description": "Native iOS (Swift) hello world app which echos your name via the Cloud",
"repoUrl": "git://github.com/feedhenry-templates/helloworld-ios-swift.git",
"githubUrl": "https://github.com/feedhenry-templates/helloworld-ios-swift.git",
"repoBranch": "refs/heads/master",
"icon": "icon-apple",
"category": "Blank Apps",
"screenshots": []
}, {
"id": "helloworld_native_android_gradle_client",
"name": "Helloworld Native Android Gradle App",
"type": "client_native_android",
"priority": 0.445,
"description": "Native Android Hello World App using Gradle which echos your name via the Cloud",
"repoUrl": "git://github.com/feedhenry-templates/helloworld-android-gradle.git",
"githubUrl": "https://github.com/feedhenry-templates/helloworld-android-gradle.git",
"repoBranch": "refs/heads/master",
"icon": "icon-android",
"category": "Blank Apps"
}, {
"id": "helloworld_native_windows_client",
"name": "Helloworld Native Windows App",
"type": "client_native_windowsuniversal",
"priority": 0.445,
"description": "Native Windows Hello World App which echos your name via the Cloud",
"repoUrl": "git://github.com/feedhenry-templates/helloworld-windows.git",
"githubUrl": "https://github.com/feedhenry-templates/helloworld-windows.git",
"repoBranch": "refs/heads/master",
"icon": "icon-windows8",
"category": "Blank Apps"
}, {
"id": "helloworld_native_xamarin_client",
"name": "Helloworld Native Xamarin App",
"type": "client_xamarin",
"priority": 0.445,
"description": "Native Windows Hello World App which echos your name via the Cloud",
"repoUrl": "git://github.com/feedhenry-templates/helloworld-xamarin.git",
"githubUrl": "https://github.com/feedhenry-templates/helloworld-xamarin.git",
"repoBranch": "refs/heads/master",
"icon": "icon-xamarin",
"category": "Blank Apps"
}, {
"id": "native_ios_objectivec_blank_app",
"name": "Native iOS (Objective-C) blank app",
"type": "client_native_ios",
"priority": 0.445,
"description": "Native iOS (Objective-C) blank app",
"repoUrl": "git://github.com/feedhenry-templates/blank-ios-app.git",
"githubUrl": "https://github.com/feedhenry-templates/blank-ios-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-apple",
"category": "Blank Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry-templates/blank-ios-app/master/screenshots/iosproject_container.png"
}]
}, {
"id": "native_ios_swift_blank_app",
"name": "Native iOS (Swift) blank app",
"type": "client_native_ios",
"priority": 0.445,
"description": "Native iOS (Swift) blank app",
"repoUrl": "git://github.com/feedhenry-templates/blank-ios-swift.git",
"githubUrl": "https://github.com/feedhenry-templates/blank-ios-swift.git",
"repoBranch": "refs/heads/master",
"icon": "icon-apple",
"category": "Blank Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry-templates/blank-ios-app/master/screenshots/iosproject_container.png"
}]
}, {
"id": "blank_advanced_hybrid_client",
"name": "Cordova App",
"type": "client_advanced_hybrid",
"priority": 0.5,
"description": "Cordova App App which echos your name via the Cloud",
"repoUrl": "git://github.com/feedhenry-templates/blank-cordova-app.git",
"githubUrl": "https://github.com/feedhenry-templates/blank-cordova-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-cordova",
"category": "Blank Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/blank_advanced_hybrid_client/1.png"
}]
}, {
"id": "blank_advanced_webapp",
"name": "Blank Web App",
"type": "webapp_advanced",
"priority": 0.49,
"description": "Blank Hello World Web App",
"repoUrl": "git://github.com/feedhenry/fh-advanced-webapp-blank-app.git",
"githubUrl": "https://github.com/feedhenry/fh-advanced-webapp-blank-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-nodejs",
"category": "Blank Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/blank_advanced_webapp/1.png"
}]
}, {
"id": "blank_native_windowsphone8",
"name": "Blank Native Windows Phone 8 App",
"type": "client_native_windowsphone8",
"priority": 0.44,
"description": "Native Windows Phone 8 Hello World App which echos your name via the Cloud",
"repoUrl": "git://github.com/feedhenry/fh-windowsphone-sdk-blank-app.git",
"githubUrl": "https://github.com/feedhenry/fh-windowsphone-sdk-blank-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-windows8",
"category": "Blank Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/blank_native_windowsphone8/1.png"
}]
}, {
"id": "blank_native_windows10",
"name": "Blank Native Universal Windows 10 App",
"type": "client_native_windowsuniversal",
"priority": 0.44,
"description": "Blank Hello World Web App",
"repoUrl": "git://github.com/feedhenry-templates/fh-csharp-window-10-blank-app.git",
"githubUrl": "https://github.com/feedhenry-templates/fh-csharp-window-10-blank-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-windows8",
"category": "Blank Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/blank_native_windows_universal/2.png"
}]
}, {
"id": "blank_xamarin",
"name": "Blank Xamarin App",
"type": "client_xamarin",
"description": "Blank Xamarin App",
"priority": 0.03,
"repoUrl": "git://github.com/feedhenry-templates/blank-xamarin.git",
"githubUrl": "https://github.com/feedhenry-templates/blank-xamarin.git",
"repoBranch": "refs/heads/master",
"icon": "icon-xamarin",
"category": "Blank Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/blank_xamarin/1.png"
}]
}, {
"id": "blank_vs_universal",
"name": "Blank Visual Studio C# Universal App",
"type": "client_native_windowsuniversal",
"description": "Blank Universal C# Hello world app",
"priority": 0.03,
"repoUrl": "git://github.com/feedhenry-templates/fh-csharp-universal-sdk-blank-app.git",
"githubUrl": "https://github.com/feedhenry-templates/fh-csharp-universal-sdk-blank-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-windows8",
"category": "Blank Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/blank_native_windows_universal/1.png"
}]
}, {
"id": "blank_appcelerator",
"name": "Blank Appcelerator App",
"type": "client_appcelerator",
"description": "Hello World Appcelerator App",
"priority": 0.04,
"repoUrl": "git://github.com/feedhenry-training/fh-titanium-example.git",
"githubUrl": "https://github.com/feedhenry-training/fh-titanium-example.git",
"repoBranch": "refs/heads/master",
"icon": "icon-appcelerator",
"category": "Blank Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/blank_appcelerator/1.png"
}]
}, {
"id": "appforms_client",
"description": "A template App for displaying Forms",
"name": "Cordova Forms App",
"icon": "icon-check",
"type": "client_advanced_hybrid",
"priority": 0.505,
"repoUrl": "git://github.com/feedhenry/appforms-project-client.git",
"githubUrl": "https://github.com/feedhenry/appforms-project-client.git",
"repoBranch": "refs/heads/master",
"category": "Forms",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry/fh-template-apps/master/screenshots/apps/appforms_client/1.png"
}]
}, {
"id": "hello_world_backbone_hybrid_app",
"name": "Backbone Hello World Client",
"description": "Hello World Backbone.js App",
"type": "client_advanced_hybrid",
"priority": 0.4,
"repoUrl": "git://github.com/feedhenry-templates/quickstart-backbone-app.git",
"githubUrl": "https://github.com/feedhenry-templates/quickstart-backbone-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-backbone",
"category": "Blank Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry-templates/quickstart-backbone-app/master/screenshots/backboneproject_nocontainer.png"
}]
}, {
"id": "hello_world_angular_hybrid_app",
"name": "AngularJS Hello World Client",
"description": "Hello World AngularJS App",
"type": "client_advanced_hybrid",
"priority": 0.4,
"repoUrl": "git://github.com/feedhenry-templates/quickstart-angular-app.git",
"githubUrl": "https://github.com/feedhenry-templates/quickstart-angular-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-angular",
"category": "Blank Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry-templates/quickstart-angular-app/master/screenshots/angularproject_nocontainer.png"
}]
}, {
"id": "hello_world_ionic_hybrid_app",
"name": "Ionic Hello World Client",
"description": "Hello World Ionic & AngularJS App",
"type": "client_advanced_hybrid",
"priority": 0.4,
"repoUrl": "git://github.com/feedhenry-templates/quickstart-ionic-app.git",
"githubUrl": "https://github.com/feedhenry-templates/quickstart-ionic-app.git",
"repoBranch": "refs/heads/master",
"icon": "icon-ionic",
"category": "Blank Apps",
"screenshots": [{
"url": "https://raw.githubusercontent.com/feedhenry-templates/quickstart-ionic-app/master/screenshots/ionicproject_nocontainer.png"
}]
}],
"connectorTemplates": [{
"name": "New mBaaS Service",
"priority": 0.9,
"id": "new-service",
"docs": "https://raw.githubusercontent.com/feedhenry-templates/helloworld-cloud/master/README.md",
"type": "other",
"image": "public/img/cloud_plugins/fh.png",
"category": "Custom Service",
"description": "This is a blank FeedHenry Service for you to customise",
"appTemplates": ["hello_world_mbaas_instance"]
}, {
"name": "OpenShift mBaaS Service",
"priority": 0.895,
"id": "openshift-mbaas-service",
"docs": "https://raw.githubusercontent.com/feedhenry-templates/fh-mbaas-service/master/README.md",
"type": "other",
"image": "public/img/cloud_plugins/fh.png",
"category": "Platform Service",
"description": "fh-mbaas service for use in OpenShift MBaaS Targets. Required for fh.forms API.",
"appTemplates": [{
"id": "openshift-mbaas-service-instance",
"name": "OpenShift mBaaS Service",
"type": "cloud_nodejs",
"repoUrl": "git://github.com/feedhenry-templates/fh-mbaas-service.git",
"githubUrl": "https://github.com/feedhenry-templates/fh-mbaas-service.git",
"repoBranch": "refs/heads/master",
"image": "public/img/cloud_plugins/fh.png",
"docs": "https://raw.githubusercontent.com/feedhenry-templates/fh-mbaas-service/master/README.md",
"category": "Platform Service",
"configuration": []
}]
}, {
"id": "saml-service",
"priority": 0.892,
"name": "SAML Service",
"type": "other",
"image": "https://raw.githubusercontent.com/feedhenry-templates/saml-service/master/files/icon.png",
"category": "Authentication",
"docs": "https://raw.githubusercontent.com/feedhenry-templates/saml-service/master/README.md",
"description": "Sample SAML Authentication service for connecting to your IdP",
"appTemplates": [{
"id": "saml-service",
"name": "SAML Service",
"type": "cloud_nodejs",
"repoUrl": "git://github.com/feedhenry-templates/saml-service.git",
"githubUrl": "https://github.com/feedhenry-templates/saml-service.git",
"repoBranch": "refs/heads/master",
"image": "https://raw.githubusercontent.com/feedhenry-templates/saml-service/master/files/icon.png",