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:
Lab 5 A #5 - you may have to enable Auto DevOps in settings via the blue button. If you enable it with defaults, you may not see the 6 stages the lab predicts.
Skip 5 #13-#14
Lab 6 - use the snippet in place of missing run.py:
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)