GitLab with Git Fundamentals

Throughout the course we will be doing a series of hands-on activities in GitLab. 

All of the labs are available here:

https://handbook.gitlab.com/handbook/customer-success/professional-services-engineering/education-services/gitbasicshandson/


We recommend you open the page above in a new tab and keep it available throughout the class.


Please also refer to this Git Cheat Sheet:  https://about.gitlab.com/images/press/git-cheat-sheet.pdf


In the published labs, we have run into a few caveats.  See below:


import os

from notes import note


# AWS creds in broad daylight!

aws_key_id = "AWSKEYMADEBYSOMEONEXXXXXXX"

aws_key_secret = "AWSKEYMSECRETMADEBYSOMEONEXXXXXXX"


if __name__ = "__main__":

    port = int(os.environ.get("PORT",9090))

    note.run(host='0.0.0.0', port=port)