Closed github-learning-lab[bot] closed 3 years ago
I downloaded VS Code and completed printing "hello world" in javascript
For this assignment, you will follow the instructions and complete a task showing your knowledge of the subject at the end. If at any moment you need help, feel free to contact your TAs.
So what is "Azure"? According to Microsoft:
Azure is an ever-expanding set of cloud services to help your organization meet your business challenges. It’s the freedom to build, manage, and deploy applications on a massive, global network using your favorite tools and frameworks.
If you want to learn more about Azure and all its cloud applications, feel free to check out this link, an overview of its capabilities.
To create an Azure account, go to: https://azure.microsoft.com/en-us/free/ and press Start free to be relocated to a signup page. After signing in with your Microsoft account and filling in your personal details, you will be asked to add a credit card. Rest assured, this is only for security purposes (preventing multiple free accounts per person), and you won't be charged unless you choose to buy a premium account, which we do not need for this course.
If you need some help navigating Azure, check out this super helpful resource provided by Microsoft.
Task 2: create and deploy an HTTP trigger Azure Function that outputs the current time and date.
This time we'll try developing locally. Follow the directions in this link to set up and deploy your first Azure Function right in your local machine. Then to move on, commit your code to the learning lab repository and post a comment below describing what you completed.
Wrote and deployed function on Azure
For this assignment, you will follow the instructions and complete a task showing your knowledge of the subject at the end. If at any moment you need help, feel free to contact your TAs.
GitHub is a cloud-based repository hosting service that is widely used in the tech industry. It allows teams to use Git for version control, collaboration, and file management. If you don't know what Git is, it's a version-control system for tracking changes, managing state, and teams concurrently developing on the same files or directories. Git and Github's tools are specifically designed to make coordinating work easier, and they are one of the most popular tools among students and the industry.
If you want to learn more about what it is and how to use it, try taking this GitHub Learning Lab Course. After finishing it, you will have a strong understanding of all the features GitHub has to offer. To make an account, go to: https://github.com/join to sign up. After making an account, you're all set to complete Task 3!
Task 3: create a repository and commit a README.md file.
Key functions you should be familiar with after this task include:
To move on, add your name to the README.md file in THIS REPOSITORY and commit the change! Also, comment a summary of what you completed!
Updated README.md to include name, as well as forked repo, made a new branch, and made a new pull request
Please complete after you've viewed the Week 1 livestream! If you haven't yet watched it but want to move on, just close this issue and come back to it later.
Help us improve BitCamp Serverless - thank you for your feedback! Here are some questions you may want to answer:
The content was helpful and challenging. The instructor taught well and at a good pace. One tip for improvement could maybe be a little more interaction with the audience/chat
Below is a written format of the livestream for this week, included for future reference. To move on, close this issue.
Last week, you should've learned how to use GitHub, Visual Studio Code, and deploy a simle Azure function.
In the livestream, we're going to set up the GitHub learning lab, Visual Studio Code, and create an Azure function resource.
We'll be going over how to:
Visual Studio Code (or VSCode) was downloaded from this link: https://code.visualstudio.com
Inside VSCode, you downloaded four extensions: Azure Account, Azure App Service, Azure Functions, and Live Server. All of the Azure extensions allow you to work on your Azure Function App in VS code instead of working directly through the Microsoft portal. Live Server is a quick and temporary testing server, and you can use it to test HTML pages. To launch, right click on your html file and press "Open with Live Server" or click "Go Live" in the bottom right corner:
For the GitHub portion of the week, there are two core things to remember:
Repositories (or repos) are essentially folders where you can store files of code. The repo of our learning lab was duplicated into your profile when you enrolled in the course so that you can commit changes and complete each lesson.
For our learning lab, each lesson is placed inside an issue. Only when you complete the lesson (committing the necessary code and commenting), will the issue close and you can move on to the next issue. Don’t worry – committing changes is easier than it sounds.
Here are the steps to cloning and committing changes to the learning lab repo (through GitHub desktop):
Remember, each step and lesson is posted on the repo on github.com. You will commit changes when the lesson instructs you to, and once you click “Push origin” and refresh the GitHub page, the issue will close and you can move on.
You don’t have to commit changes on GitHub desktop, though.
Here are the steps to committing code on the GitHub website:
Working with Azure Functions was the biggest task of the week (and vital to the next seven weeks).
Here are the steps to creating a resource and deploying a simple HTTP trigger function in that resource:
One more tip: don’t forget to save! Rewriting code can be challenging and extremely frustrating, so save yourself the trouble!
To move on, comment any questions you have. If you don't have any questions, comment Done.
Done
Downloading an IDE
For this assignment, you will follow the instructions and complete a task showing your knowledge of the subject at the end. If at any moment you need help, feel free to contact your TAs.
Visual Studio Code
Before we start coding, we need to install an IDE. An IDE is a software application that provides comprehensive facilities to computer programmers for software development. An IDE normally consists of at least a source code editor, build automation tools, and a debugger. Although there are hundreds of IDEs to choose from, we are going to use Visual Studio Code due to its popularity and integration with Azure (via extensions and libraries).
To install VSC, go to: https://code.visualstudio.com/download and choose your operating system (ie. Windows, Mac, Linux, etc). Then click Download and run the installer (usually a
.exe
or.zip
file). After it's installed, open it up and try it out. If you need some help navigating VSC, check out this super helpful Youtube video.Make sure to use Dark Theme unless you want to live life on the edge...
Task 1: create a JavaScript file that prints out "Hello World" in the terminal.
Once you are done, write a comment describing what you completed.