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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
Skip to content
  • OutSystems Training_

    Jump into our OutSystems training to learn how to build efficient, scalable, and modern apps with a market-leading tech. As official partners, we've got a variety of courses tailored to your needs.

    Checkout Training
    Outsystems Partner of the year 2021 Badge
  • Outsystems Security Specialist Bootcamp

    ONLINE // PART-TIME

    Know More
    Outsystems Partner of the year 2021 Badge

72 years of assembled experience delivering critical OutSystems Apps.

Get ready for a super interactive and hands-on experience. Dive headfirst into everything OutSystems has to offer, with the help of a certified OutSystems trainer, and  take a shot at the certification exam to show off your certified badge.

0
Years Experience
0
Trainers
0
OutSystems Bootcamps
0
Alumni

TEAM

  • francisco
    Francisco Silva
  • bruno
    Bruno Ferreira
  • carlos
    Carlos Lopez
  • nobre
    João Nobre
  • orlando
    Orlando Correia
  • paulo

    Paulo Resende

Feedback from some of our past graduates

  • Nuno Oliveira
    OutSystems Expert Developer

    This bootcamp was a really great journey to the Security world, I enjoyed every minute. The content was really great with real examples of security problems that we lived and we have also OutSystems exercises.
    The instructor loves what he does, is a great communicator, and brings great energy to the group. I had luck with the class because it was a great class also.
    Because OutSystems is a great tool we developers miss some Security topics, this is a great opportunity for us to learn or understand a little more about this security world.

  • Sofia Ikbal
    OutSystems Developer

    Do you know what Threat Actor, Zero-Day Exploit, or OWASP mean? If you answered "no", then you must join the OutSystems Security Bootcamp taught by CyberSecurity Chief and Rockstar, PP!
    For 5 days, Pedro Correia a.k.a. the CyberSheriff, as well as his Padawans Dias and Milton, will immerse you into the amazing world of Cybersecurity!
    For us, developers, it's crucial to be aware of cybersecurity issues and this bootcamp has it all! It's interactive, students learn by doing and PP has a lot of knowledge he gladly shares with his students. So, once again, thank you PP!

Chevrons Business

Specialized OutSystems training experiences

Courses and bootcamps that will have you building high-quality mobile and web apps with OutSystems.

They're all about getting stuck into OutSystems in the best way possible, whether you’re in a classroom, joining from your sofa in your PJs, or doing a bit of both. Don’t worry, we’re not about to make you do push-ups or rock a buzz cut to learn OutSystems.

OutSystems Instructor-led Bootcamps

Join an immersive, week-long OutSystems learning adventure, led by certified trainers or experts from our Training Partners. These intensive experiences culminate with an optional certification exam, moving you closer to becoming a certified OutSystems professional.

Online or On Site
40 hours (4 or 8 hours / day)

OutSystems Security Specialist Bootcamp

4.89/5 - Course Report
  • The training covers critical fields of security experts such as security fundamentals, authentication, authorization, access control, secure connections, handling sensitive data, OWASP vulnerabilities, OutSystems built-in protections and security best practices required to build secure OutSystems applications and get certified as an OutSystems Security Specialist.

More Info
  • GET CERTIFIED

    This bootcamp will prepare you for the OutSystems Security Specialist certification. We will provide you with a certification voucher for the exam.

     

    FROM ANYWHERE

    This bootcamp will be provided remotely or on site from Monday to Friday. All you need is your pc and a stable internet connection.

     

    MEET PEDRO

    Pedro "PP" Correia, CyberSheriff & CyberSecurity Instructor @Code for All_ will be your certified trainer for the duration of the bootcamp.

     

New!
Online or On Site
40 hours (4 or 8 hours / day)

ODC Developer Bootcamp

4.89/5 - Course Report
  • This course immerses you in the core aspects of development, including data modeling, business logic, UI design, screen lifecycle, among others, offering a comprehensive hands-on experience with ODC.

    By week's end, you'll be equipped with the necessary skills to initiate your own web and mobile app projects.

    Furthermore, you'll be granted the chance to earn the ODC Associate Developer certification for free!

More Info
  • What will you learn?

    The fundamentals of web and mobile development in ODC and how to create your very first OutSystems app. You will learn how to:

    • Create your data model;
    • Visually build your business logic;
    • Create amazing user interfaces;
    • Efficiently manage the screen lifecycle;
    • … and much more.
  • What do you need?

    Your laptop with ODC Studio installed. A few days before the Boot Camp, you will receive detailed instructions with all the information you need.

  • Who should attend?

    This course is targeted to:

    • Developers who are either new to OutSystems, or have limited experience with the platform, and want to learn about app development with ODC.
    • Architects and project managers who need to better understand how OutSystems delivers apps.

    For this course, attendees should have some knowledge of relational databases and basic programming concepts (not specific to any language).

  • What's the agenda?

    PART 1

    • Intro to the Course
    • Introduction to OutSystems Apps
    • Modeling Data
    • UI Development 101
    • Aggregates 101
    • Client and Server Logic
    • Building List Screens

    PART 2

    • Data Relationships
    • Advanced Aggregates
    • Form Validations
    • Building Detail Screens
    • Debugging and Monitoring
    • Role-based Security

    PART 3

    • Exceptions
    • Blocks and Events
    • Client Variables and Settings
    • Screen Lifecycle
    • Fetching Data on Demand
    • Pagination and Sorting

    PART 4

    • Final Project
    • Optional Modules

    PART 5

    • Final Project
    • Sample Test
New!
Online or On Site
40 hours (4 or 8 hours / day)

Mastering Cloud Networking: OutSystems & AWS Edition

4.89/5 - Course Report
  • This course immerses you in the fundamentals of cloud networking, from core networking concepts to deploying and managing network resources in AWS, all within the context of OutSystems development.

    Through hands-on labs, you'll gain practical experience with AWS Virtual Private Cloud (VPC), security groups, load balancing, and hybrid connectivity, ensuring a strong foundation in cloud networking tailored to OutSystems applications.

    By the end of the program, you'll have the skills needed to design and implement secure, scalable network architectures that support OutSystems deployments on AWS.  This course will also give you the knowledge for the "AWS Certified Cloud Practitioner (CLF-C02)" certification.

More Info
  • What will you learn?

    The fundamentals of cloud networking and how to design, deploy, and manage network infrastructure for OutSystems applications in AWS. You will learn how to:

    • Understand core networking concepts, including IP addressing, subnets, and routing;Build and configure secure Virtual Private Clouds (VPCs) in AWS;
    • Implement security best practices using security groups, network ACLs, and firewalls;
    • Set up and manage load balancing and traffic routing with AWS services;Integrate OutSystems applications with cloud networking solutions;
    • … and much more.
  • What do you need?

    Your laptop. A few days before the Bootcamp, you will receive detailed instructions with all the information you need.

  • Who should attend?

    This course is designed for:

    • OutSystems developers who want to enhance their understanding of cloud networking and build scalable, secure applications on AWS.
    • Architects and technical leads looking to optimize OutSystems deployments by leveraging cloud networking best practices.
    • DevOps and infrastructure engineers who need to manage and secure networking resources for OutSystems applications in AWS.


    To get the most out of this course, attendees should have a basic understanding of networking concepts, cloud computing fundamentals, and some experience with OutSystems development.

Online or On Site
40 hours (4 or 8 hours / day)

Reactive Developer Bootcamp

4.89/5 - Course Report
  • The course delves into the core principles of crafting reactive web and mobile applications, covering areas such as data modeling, business logic, UI design, screen lifecycle, and more. Through a hands-on approach within the OutSystems Development Environment, you will gain practical experience.

    Upon completion of the course, you will be equipped to commence developing your own reactive web and mobile applications. Additionally, you will have the opportunity to pursue the Associate Reactive Developer certification at no cost!

More Info
  • What will you learn?

    The fundamentals of reactive web development in OutSystems and how they can be applied in building responsive web applications. You will learn how to:

    • Create your data model;
    • Visually build your business logic;
    • Create amazing user interfaces;
    • Efficiently manage the screen lifecycle;
    • … and much more.
  • What do you need?

    Your laptop with Service Studio installed. A few days before the Boot Camp, you will receive detailed instructions with all the information you need.

    Although there are no mandatory prerequisites, for a smoother and more complete learning experience we recommend following the OutSystems Overview and the Service Studio online courses, before attending this training. It takes approximately 30 minutes to watch the 7 short online videos.

  • Who should attend?

    This course is targeted to:

    • Developers who are either new to OutSystems, or have limited experience with the platform, and want to learn about app development with ODC.
    • Architects and project managers who need to better understand how OutSystems delivers apps.

    For this course, attendees should have some knowledge of relational databases and basic programming concepts (not specific to any language).

  • What's the agenda?

    PART 1

    • Intro to the Course
    • Introduction to OutSystems Apps
    • Client and Server Logic
    • Modeling Data
    • UI Development 101
    • Aggregates 101
    • Building List and Detail Screens

    PART 2

    • Data Relationships
    • Advanced Aggregates
    • Form Validations
    • Debugging and Monitoring
    • Role-based Security
    • Exceptions

    PART 3

    • Blocks and Events
    • Client Variables and Site Properties
    • Screen Lifecycle
    • Fetching Data on Demand
    • Pagination and Sorting

    PART 4

    • Final Project
    • Optional Modules (SQL Queries, Intro to Integration Studio, Intro to Themes and Styles, …)

    PART 5

    • Final Project
    • Sample Test
New!
Online or On Site
24 hours (4 or 8 hours / day)

Mobile for OutSystems Developers

4.89/5 - Course Report
  • Throughout the course, you'll dive into essential concepts for creating native mobile applications. From crafting your own app to exploring topics like managing local storage, syncing data, utilizing Cordova plugins, and more, you'll gain hands-on experience within the OutSystems Development Environment.

    By the end of the week, you'll have the skills to enhance your mobile apps and develop a native app ready for your device. Plus, you'll have the opportunity to explore the Mobile Developer Specialization at no cost!

More Info
  • What will you learn?

    Concepts that are specific to mobile development in OutSystems that will allow you to understand the fundamentals of native and offline app development. You will learn how to:

    • Create your local storage data model;
    • How to synchronize data between the device and the server
    • Develop plugins to use native device capabilities;
    • Generate the Android and iOS native app package;
    • … and more.
  • What do you need?

    Your laptop with Service Studio installed. A few days before the Boot Camp, you will receive detailed instructions with all the information you need.

    This course was built for developers already familiar with the OutSystems development fundamentals. The prerequisite for this course is the Reactive Developer guided path or classroom training, or experience in reactive web development in OutSystems.

  • Who should attend?

    This course is targeted to developers, architects and project managers who are already familiar with reactive web development in OutSystems and want to learn about specific mobile application development with our platform, such as offline scenarios and native capabilities.

  • What's the agenda?

    PART 1

    • Intro to the Course
    • Mobile Design Considerations
    • Native App Generation
    • Modeling Local Storage Data
    • Exercises

    PART 2

    • Data Synchronization
    • Mobile Plugins
    • Exercises

    PART 3

    • Mobile Debugging
    • Exercises
    • Sample Test
Online or On Site
40 hours (4 or 8 hours / day)

Advanced Developer Bootcamp

4.89/5 - Course Report
  • The course expands the fundamentals of reactive web and mobile development, exploring topics such as application architecture, external authentication, integrations with external systems, asynchronous processes, and development best practices. The Bootcamp encourages group discussion and hands-on activities that mirror real-world scenarios.

    By the end of the week, you will possess the knowledge needed to enhance your reactive web and mobile applications effectively and at scale.

    Moreover, this Bootcamp will aid participants in preparing for the Architecture Specialization and the Web Developer Specialization exams.

More Info
  • What will you learn?

    You will learn how to expand your apps efficiently and at scale, by going through relevant topics such as:

    • How to design a sound and scalable application architecture;

    • How to expand your app and integrate it with external systems for data consumption, and external authentication, among others;

    • What are the best practices that any OutSystems app should follow;

    • How to leverage the asynchronous processes capabilities.

    • … and much more.

  • What do you need?

    Your laptop with Service Studio installed. A few days before the Boot Camp, you will receive detailed instructions with all the information you need.

  • Who should attend?

    This Bootcamp is targeted at OutSystems developers that already know the fundamentals of reactive web and mobile application development, who already developed OutSystems apps, and who want to expand their skills and knowledge. It's also recommended for architects and project managers who need to better understand how OutSystems delivers Reactive Web applications

  • What's the agenda?

    PART 1

    • Architecture:

      • Architecture Framework
      • OutSystems Architecture Canvas
      • Architecture Design
      • Module Naming
      • Validating an Architecture

    PART 2

    • Architecture

      • Architecture Patterns
      • Refactoring
      • Composing LifeTime Applications
      • Decoupling Services

    PART 3

    • Integrations:

      • External Databases
      • External C# Code
      • Expose and Consume SOAP
      • Expose and Consume REST
      • Web Services Advanced Scenarios

    PART 4

    • Authentication
      • Roles and Groups
      • Syncing Roles and Groups to OutSystems
      • Login with External Authentication
      • Federated Single Sign-on
    • Asynchronous Processes
      • Timers and Light BPT
      • Batch Processing

    PART 5

    • Best Practices:

      • Data Modeling
      • Queries
      • Business Logic
      • User Interface
      • Application & Module Level
Online or On Site
40 hours (4 or 8 hours / day)

O11 Architecture Bootcamp

4.89/5 - Course Report
  • The course explores in depth architecture design for scalable, high-performance applications. It includes engaging group discussions and hands-on activities in the OutSystems Development Environment, utilizing tools specifically crafted for establishing and upholding a robust architecture. The Boot Camp emphasizes practical problem-solving, with constant assistance from a dedicated instructor.

    By the conclusion of the week, you will be equipped to craft scalable architecture solutions that enhance the performance, flexibility, and manageability of your OutSystems applications. Additionally, you will have the opportunity to attempt the Architecture Specialization Exam at no cost!

More Info
  • What will you learn?

    You will learn about the fundamentals of OutSystems architecture design, such as:

    • Architecture Design with OutSystems
    • Architecture Best Practices
    • Architecture validation rules and tools
    • Mobile Architecture
    • Front-End Architecture
  • What do you need?

    Your laptop with Service Studio installed. A few days before the Bootcamp, you will receive detailed instructions with all the information you need.

    Although there are no mandatory prerequisites, for a smoother and more complete learning experience, we recommend having previous experience as an Architect or Tech Lead or having at least 6 months of experience as an OutSystems Developer.

  • Who should attend?
    This course is targeted to:
    • Architects
    • Tech Leads
    • Developers 
      with previous experience in OutSystems.
  • What's the agenda?

    DAY 1

    • OutSystems Architecture Canvas
    • Architecture Design

    DAY 2

    • Design Best Practices
    • Architecture Validation
    • Architecture Patterns

    DAY 3

    • Application Composition
    • Validating Application Architecture
    • Refactoring

    DAY 4

    • Mobile Architecture
    • Scalable Front-End Architecture
    • Final Project

    DAY 5

    • Final Project
    • Sample Test
Online or On Site
16 hours (4 or 8 hours / day)

Front-end Developer Bootcamp

4.89/5 - Course Report
  • The course covers the fundamentals of Front-end Development in OutSystems. The Bootcamp focuses on how to make the most of the available resources provided by the platform, such as patterns, themes, templates, and live style guides, as well as on how to properly define and apply custom styles.

    By the end of the week, you will have what it takes to create complex UI designs and achieve pixel-perfect applications.

    Also, you'll be able to take a shot at the Front-end Developer Specialization for free!

More Info
  • What will you learn?

    You will learn about the fundamentals of Front-end Development in OutSystems, such as:

    • Themes, Layouts, and Patterns
    • OutSystems UI
    • CSS and JavaScript
    • Customizing your UI
    • Front-End Architecture
  • What do you need?

    Your laptop with Service Studio installed. A few days before the Boot Camp, you will receive detailed instructions with all the information you need.

    Although there are no mandatory prerequisites, for a smoother and more complete learning experience, we recommend following the OutSystems Overview, Service Studio Overview, Front-end in OutSystems Expert Talk, and Live Style Guide in OutSystems online courses, before attending this Boot Camp.

  • Who should attend?

    This course is targeted at Front-end and Full-stack Developers and Project managers that need to understand the fundamentals of Front-end Development in OutSystems.

    For this course, attendees should have some knowledge of HTML, CSS, JavaScript & OutSystems Reactive development.

  • What's the agenda?

    PART 1

    • Front-End Development in OutSystems
    • OutSystems UI
    • CSS and JavaScript

    PART 2

    • Customizing your UI
    • Front-End Architecture
    • Sample Test
Online or On Site
40 hours (4 or 8 hours / day)

Platform Ops Bootcamp

4.89/5 - Course Report
  • The course teaches participants how to operate, maintain and monitor an OutSystems Infrastructure, with a focus on real-life planning and execution of best practices, to guarantee a healthy, performant, and scalable OutSystems Infrastructure.

    By the end of the week, you will have the knowledge to manage the operations and troubleshoot your OutSystems Infrastructure.

    Also, you'll be able to take a shot at the Professional Platform Ops Engineer certification for free!

More Info
  • What will you learn?

    You will learn how to:

    • Debug issues related to stability and performance;
    • Scale existing systems to cope with new requirements;
    • Keep OutSystems updated with the latest features and fixes;
    • Maintain a healthy pipeline in terms of operations to facilitate its management;
    • … and much more.
  • What do you need?

    Your laptop and internet access from where you are located, in case of remote training. OutSystems will provide all necessary infrastructures to follow the Bootcamp.

    Although there are no mandatory prerequisites, we recommend participants to have Operations / Sysadmin roles or backgrounds.

  • Who should attend?

    This course is targeted to Operations Engineers / Sysadmins who want to support OutSystems in their on-premises or Cloud systems.

  • What's the agenda?

    PART 1

    • Platform Presentation
    • Pre-reqs and System Requirements
    • Install & Setup
    • SSL Certificates Installation
    • IIS Application Pools
    • Service Center I

    PART 2

    • Farm Install
    • LifeTime Install & Setup
    • Service Center II
    • OutSystems Zones
    • Multiple Database Catalogs

    PART 3

    • Logging
    • Asynchronous Processes
    • Database Connections
    • SEO
    • Active Directory Authentication
    • LifeTime User Management
    • Release Management

    PART 4

    • Infrastructure Design
    • Monitoring OutSystems Servers
    • Platform Update & Upgrade
    • Multiple Database Catalogs

    PART 5

    • Tuning
    • High Availability and Disaster Recovery
    • Q&A
    • Sample Test
Online or On Site
40 hours (4 or 8 hours / day)

Traditional Web Developer Bootcamp

4.89/5 - Course Report
  • The course introduces students to traditional web application development with OutSystems.  The course covers the fundamentals of developing responsive web applications, such as data modeling, business logic, UI design, screen lifecycle, and much more, with a very focused hands-on experience in the OutSystems Development Environment.

    By the end of the week, you will be able to start developing your own traditional web applications. 

    Also, you'll be able to take a shot at the Associate Traditional Web Developer certification for free!

More Info
  • What will you learn?

    The fundamentals of traditional web development in OutSystems and how they can be applied in building responsive web applications. You will learn how to:

    • Create your data model;
    • Visually build your business logic;
    • Create amazing user interfaces;
    • Efficiently manage the screen lifecycle;
    • … and much more.
  • What do you need?

    Your laptop with Service Studio installed. A few days before the Boot Camp, you will receive detailed instructions with all the information you need.

    Although there are no mandatory prerequisites, for a smoother and more complete learning experience, we recommend following the OutSystems Overview and the Service Studio online courses, before attending this training. It takes approximately 30 minutes to watch the 7 short online videos.

  • Who should attend?

    This course is targeted to:

    • Developers who are either new to OutSystems, or have limited experience with the platform, and want to learn about traditional web application development with OutSystems.
    • Architects and project managers who need to better understand how OutSystems delivers traditional web applications.

    For this course, attendees should have some knowledge of relational databases, basic programming concepts (not specific to any language), and basic web technologies

  • What's the agenda?

    PART 1

    • Intro to the Course
    • Web Development Overview
    • Web Apps in OutSystems
    • Database Entities
    • Variables in OutSystems
    • Basic Screen Development and Widgets
    • Basic Database Queries
    • Modeling Data Relationships

    PART 2

    • Screen Interactions
    • Advanced Database Queries and Widgets
    • Actions and Code Reusability
    • Debugging and Monitoring
    • Input Validations

    PART 3

    • AJAX Interactions
    • UI Reusability: Web Blocks
    • Role-based Security
    • Session Handling
    • SOAP Web Services and REST APIs

    PART 4

    • Themes & Styling
    • Advanced UI Patterns
    • Final Project

    PART 5

    • Final Project
    • Sample Test
Online or On Site
40 hours (4 or 8 hours / day)

Advanced Traditional Web Developer Bootcamp

4.89/5 - Course Report
  • This course is designed to take students beyond the basics of traditional web application development with OutSystems, allowing them to fully unleash the platform's potential. The focus is on creating scalable, high-performance applications that offer an exceptional user experience, while encouraging group discussions and hands-on activities.

    Upon completion of the course, you will have the knowledge needed to efficiently expand your traditional web applications at scale. Additionally, you will have the opportunity to pursue the Professional Traditional Web Developer certification, free of charge!

More Info
  • What will you learn?

    At the end of the week, you will have the knowledge that will enable you to expand your traditional web applications efficiently and at scale. You will learn:

    • Application architecture best practices and common patterns;
    • Integrations with External Systems;
    • External Authentication;
    • Performance Best Practices;
    • Asynchronous processes;
    • … and much more.
  • What do you need?

    Your laptop with Service Studio installed. A few days before the Boot Camp, you will receive detailed instructions with all the information you need.

  • Who should attend?

    This course is targeted at OutSystems developers and former Developing OutSystems Web Applications Boot Camp, or online class students, who already know OutSystems and want to expand their skills and knowledge. The course is also recommended for architects and project managers who need to better understand how OutSystems delivers traditional web applications.

  • What's the agenda?

    PART 1

    • Architecture:

      • Architecture Framework
      • OutSystems Architecture Canvas
      • Architecture Design
      • Module Naming
      • Architecture Patterns

    PART 2

    • Architecture:

      • Architecture Patterns
      • Validating an Architecture
      • Refactoring
      • Composing LifeTime Applications
      • Decoupling Services

    PART 3

    • Integrations

      • External Databases
      • External C# Code
      • Expose and Consume SOAP
      • Expose and Consume REST
      • Web Services Advanced Scenarios

    PART 4

    • Authentication and Asynchronous Processes:

      • Authentication
        • Roles and Groups
        • Syncing Roles and Groups to OutSystems
        • Login with External Authentication
        • Federated Single Sign-on
      • Asynchronous Processes
        • Timers and Light BPT
        • Batch Processing

    PART 5

    • Best Practices:

      • Data Modeling
      • Queries
      • Business Logic
      • User Interface
      • Application & Module Level

Thinking this could be perfect for your team?

Give us a shout! We can set up a dedicated Bootcamp just for you and your crew.

FAQs

Who are Code for All_ technology courses for?
Our technology courses are aimed at everyone! We have courses for all levels of knowledge and, therefore, all you need is a desire to learn.
Do I need programming experience?

No. Both our beginner courses and intensive courses are designed for people who have no programming experience.

Do I need to know Mathematics to learn to program?

Contrary to what many think, it is not necessary to know Mathematics to learn the art of programming.
Programming mainly involves logic and problem solving, where many of the main concepts do not directly depend on complex mathematics.

I come from a field of humanistic sciences. Will it be more complicated for me to learn to program?

It is not necessarily more complicated for someone with a background in humanistic sciences to learn to program. The ability to learn programming is not directly linked to previous academic training, but rather to motivation, interest and dedication.

What does Full-Stack mean?

It is a term used in the area of software development to describe a professional who has knowledge in both client-side (front-end) and server-side (back-end) programming of a web application.

How can I apply for courses?

Applying depends on the type of course you choose. If it is an introductory course, there is no application process, so simply choose the introductory course and enroll in the introductory course that best suits you.

If you wish to enroll in an intensive course, you will have to go through our application process for intensive courses and, if you are accepted, your registration will be validated.

What is a bootcamp?

A programming bootcamp, often simply called bootcamp, is an intensive course that aims to learn how to program in a short period of time. This course format is aimed at people who want to start programming or improve their existing skills quickly and efficiently. Here are some common characteristics of a coding bootcamp:


Intensive
Bootcamps are generally short in duration, ranging from a few weeks to a few months. During this period, participants dive deeply into learning programming and work on practical projects.

Practical focus
Students work on projects from the beginning, which helps them quickly develop their practical programming experience.

Fast learning
Bootcamps are designed to provide accelerated learning. They include long hours of daily study and practice, which allows students to quickly absorb the content taught.

Specialized teachers
Experienced teachers specialized in programming and software development are available throughout the bootcamp, to help you at all times.

Placement on the job market
Our bootcamps have job placement support programs, where our Placement team supports participants in finding jobs after completing the bootcamp.