Skip to content

Latest commit

 

History

History
291 lines (201 loc) · 17.3 KB

File metadata and controls

291 lines (201 loc) · 17.3 KB

Challenge 3: Create Milligram application on Azure

⏲️ Est. time to complete: 60 min. ⏲️

Here is what you will learn 🎯

Today you will learn how to:

  • Get started with GitHub Actions
  • Deploy the Milligram frontend to GitHub Pages
  • Create a Python web app on Azure
  • Deploy the Milligram backend on Azure with GitHub Actions

Table Of Contents

  1. Milligram application frontend
    1. Enable GitHub Actions
    2. Run GitHub Actions
    3. Enable GitHub Pages in project settings
    4. Open GitHub Page on your phone
    5. Add application to home screen
  2. Milligram application backend
    1. Prepare image upload
    2. Make application backend run in the cloud
    3. Deploy image upload
  3. Overcharged? We got you covered

Further informative resources

Milligram application frontend

First, let's get started with the frontend application - The part that you will see and use on your mobile phone or your web browser. This is the main way to interact with Milligram's services.

What does frontend mean?

Let's imagine a simple car. Everything you see - the seats, the roof, the floor, the user interface (dashboard, steering wheel, etc.) - that's all frontend. Then you open the hood: and there it is! The backend and the API. You can see the engine, the transmission and some other elements.

But how to understand this example now... quite simple. The frontend is what the user uses to give instructions to the backend via an API. So when you step on the gas pedal, the engine accelerates.

Stepping on the gas pedal triggers a request in the frontend to the API in the backend for the engine to accelerate, and the required part of the backend (in this case, the engine) executes it.

Enable GitHub Actions

We've prepared an automated way to create and update the website for you. You will use two of GitHub's awesome features. GitHub Pages and GitHub Actions. Let's get started with the actions.

  • Go to your repository's Actions
  • Click the button which says I understand my workflows, go ahead and enable them to enable GitHub Actions

A repository contains all of your project's files and each file's revision history. You can discuss and manage your project's work within the repository.

Enable GitHub Actions

Make sure that the Actions have read/write permissions. Check this via Settings->Actions->General and scroll down to the Workflow permissions section. Click the Read and write permissions option. Click Save. Check Settings

Run GitHub Actions

  • In the Actions tab of your repository, click on the pages workflow.
  • Open the Run Workflow dropdown and click the Run Workflow button to confirm the workflow execution.

Now, observe how the workflow is being run and take a look at the individual steps that are run for you by GitHub.

Run workflow

Enable GitHub Pages in project settings

To be able to display the website (frontend) we've built and deployed using GitHub Actions, we need to enable GitHub Pages for your repository. GitHub Pages are an easy way to display a static website related to your repository. Many people use it to display the documentation for their projects. We will use it to serve the frontend for Milligram.

  • Go to your repository settings- Repository Settings
  • Navigate to Pages, select the branch gh-pages and hit the save button. Enable Pages
  • The deployment will take 1-2 minutes. After that, the Milligram website is accessible through https://<your github username>.github.io/anyonecancode/.

Take a look at the website. Try changing the profile to your GitHub account name and see that it is stored even if you refresh the browser.

Open GitHub Page on your phone

Milligram is a fun little app similar to photo based social media that you might be familiar with. Of course we want to use it on our mobile phones so we can use the cameras to take awesome selfies and pictures for Milligram. Its main features are:

  • Display simple GitHub account information from your own profile
  • Take photos and add them to the stream of images
  • Detect objects within images and create image descriptions (implemented on day 2)
  • Transcribe sentences you speak using Azure Speech Service (implemented on day 2)

To make the first modifications, open your personal Milligram website on your phone and explore it's content. Then edit the profile in the app to show your own GitHub profile picture in the app. Add to homescreen 1

Add The application to your homescreen

On modern mobile phones, you can "install" web apps on you homescreen to make them more accessible and make them look more like an app from an official appstore. Therefore, we will not add the app to our phones' homescreen.

  • Open the browser menu to add the website to your homescreen.
    • This is how it should look like on ios: Add to homescreen ios
    • This is how it should look on Android: Add to homescreen Android
  • Now you can open the website like a normal app from the homescreen of your phone.

Milligram application backend

The application backend will receive uploaded photos, store them for us and return them when needed.

Our application can be divided into a frontend (something you see and runs locally on your phone) and a backend (something which processes your information). In this case, as we want to create our own social media application, we need pictures to be stored for our "News Feed". That means we need a place to store many files and a place to run our application logic (which is our programming code).

To store the files, we will use an "Azure Storage Account" and to run our application, we will use an "Azure Web App". First things first - sign into your "Azure Account".

Log Into Azure

  • Go to your browser and visit portal.azure.com.

  • Log in with your Azure Account. The login information is provided to you by your trainer. Ask them if you don't know where to find it.

Log In Azure

Create Storage Account

Our storage account is the place where we "save" our pictures for our news feed. Inside the storage account we use the so called Azure Blob Storage. The Blob Storage can hold a massive amount of files. Just like the disk or storage on your computer. A cool fun fact is that you can store as many photos on the storage account as you like and you don't have to worry about your storage space.

Azure Resource: In Azure, the term resource refers to an entity managed by Azure. For example, virtual machines, virtual networks, and storage accounts are all referred to as Azure resources.

Azure Resource Group: A resource group is a container that holds related resources for an Azure solution. The resource group can include all the resources > for the solution, or only those resources that you want to manage as a group.

  • Go to the home page of the Azure Portal.
  • Click on + Create a resource.
  • Search for Storage Account and click Create.
  • Select your subscription & the resource group with the name that you used to log into the Azure Portal.
  • The name of your Azure Storage account needs to be globally unique. It also has to use small letters and no special characters.
  • Make sure to select Standard for Performance and Locally-redundant storage (LRS) for Redundancy. Storage
  • Hit Review & create and after that Create to finish creating the storage account.
  • Once the storage account is created there should be a button Go to resource. Click on it.
  • Now you should see your storage account. Select Containers on the left hand side.
  • Click the New Container button and create a container named images. Leave everything in the preconfigured settings as is.

This is the place where all uploaded images to our Milligram app will be stored.

Create Web App

Our Azure Web App is a computer managed by Microsoft where you can easily run your own application without worrying about software updates, security issues, backUp or hardware issues (as you might have already experienced on your phone).

  • Go to the home page of the Azure Portal again.
  • Click on + Create a resource as you did before.
  • Search for Web App and click Create.
  • Select your subscription & your Resource Group.
  • Make sure to adjust the settings according to the image below:
    • Name: <pick your own unique name>
    • Publish: Code
    • Runtime stack: Python 3.8
    • Operating System: Linux
    • Region: West Europe backend 0
  • Create a new App Service Plan and <pick your own name>. backend 1
  • Click on Change size and then click the Dev/Test tab and select the F1 which is free, otherwise you might be charged when creating a larger plan. backend 2
  • Click Review + Create at the bottom of the screen.
  • Review the displayed information and click Create on the next screen to spin up the backend application.

:::tip 📝 On the review page, you can find information about the estimated costs of your service. Make sure it displays Estimated price - Free :::

Integrate storage and configure Web App

Now let's connect our application with our storage so that you can take pictures on your phone and store them. We need to tell the Web application where it can find our storage service. The application can take external configurations to configure the connection to the storage account.

  • For this reason navigate to your storage account again. You should be able to find it via the search bar in the top either by searching its unique name or just storage account.
  • Under Access keys you can find the Connection string from our storage account. Hit the 👀Show keys button so are able to copy it's value to e.g. a notepad. Screenshot of Access key page in Azure portal
  • Navigate back to the web app and open the Configuration tab, click New connection string and create a new connection string with the following settings:
    • Name: STORAGE
    • Value: <paste your (earlier copied) connection string from Storage Account>
    • Type: Custom
  • Hit ok and Save.
  • Navigate and scroll down to the CORS tab on the left hand side of your app service and enter https://<YourGithubHandle>.github.io under Allowed Origins.
  • Hit Save again.

Now your storage account and web app are successfully connected and can communicate with each other.

Azure Web App configuration

There is still a small configuration missing. Our app uses a ready-made module so that users can interact with their content. But this module is not installed yet. In order for it to be installed, we provide the web app with a configuration that is executed when the app is launched, allowing users to interact with our app's data.

  • Navigate to Configuration under Settings.
  • Under the tab General settings you should find the Stack settings. For our backend we are working with the programming language Python - more specifically Python 3.8.
  • Behind Startup Command enter gunicorn -k uvicorn.workers.UvicornWorker and hit Save. How to configure the Startup Command of the Web application

Deploy Milligram backend code to Azure Web App via GitHub Actions

To ensure our social media application can actually do something, we need to bring our source code to the Azure Web App. To do that we will automate this so called "deployment". Hence, we don't have to rely on a manual process every time we want to make changes (e.g. changing the title of the application) to our application and thus, we avoid many mistakes.

  • Navigate to the Deployment Center tab on the left hand side of your Web App in the Azure portal.
  • Under the Settings tab select GitHub as Source and click Authorize.
  • Under Organization select your GitHub handle and under Repository select anyonecancode as well as the main Branch.
  • Hit Save.

Once you have hit Save the service automatically creates a workflow file in your GitHub repository. This workflow is immediately being executed and after about 2 minutes your web app is ready. You can also check your deployment on your "Actions" tab in your repository. The color green is always a good sign.

Check if Milligram app is running correctly

Let's pause a second. To make sure that you are on track, test if our app's frontend gets a response from our backend service. Before we bring everything together, we want to make sure the backend service is working as expected.

  • Navigate to the Overview tab on the left hand side of the Web App Service. App Service URL

  • Hit the URL and test the website using the docs to figure out if the features of our Milligram will work.

  • In your browser you will have the following view: Test API Page

    :::tip 📝 If you want to learn more about Swagger have a look at Wikipedia. :::

  • Select the GET/images endpoint, hit Try it Out and then hit Execute. Once you get the 200 Response code, you have a successful running service. Congratulations!

    :::tip 📝 Look at the HTTP Response Codes at Wikipedia. 2xx Codes generally mean success, where as 4xx and 5xx Codes show different kinds of errors. You probably know 404 - Not Found. :::

Integrate Azure Web App URL in GitHub Secrets

Now that we are sure that our backend service works as expected, we can bring everything together.

To do this, we will use a GitHub feature called Secrets, where you can store your backend URL to make your frontend talk to the backend service.

  • On your Repository page in GitHub select Settings and navigate to Secrets > Actions.
  • Add a New repository secret named VITE_IMAGE_API_URL and as value set <your WebApp's URL>.

    ⚠️⚠️ Your URL should end on a /. It should look like this: https://xxxx.azurewebsites.net/ GitHub Secrets Create

Run frontend Pipeline again

For the change of adding the secret taking effect in the frontend, we need to run our build pipeline again so that the process can pickup the newly created setting.

  • Navigate to the Actions tab, select the pages workflow and rerun the workflow: GitHub frontend Workflow

  • Once the workflow is started you will see the workflow running. You can get to the view below by clicking on the workflow run. GitHub frontend Workflow Progress

  • Finally finishing up the Milligram Service. GitHub frontend Workflow Done

Open the App - Take a Selfie and review your News Feed

Click on the frontend link displayed under the deploy step under your pipeline https://<yourGithubHandle>.github.io/... or reopen the App on your phone.

Our frontend application should now have a new button with a camera symbol that allows us to take pictures. These pictures should then appear on the timeline or news feed.

So go ahead and take at least 5 pictures and make sure they appear in your app. Make sure to share them with at least 1-2 friends so they can also upload their photos to your News Feed.

That's a wrap for today. Congrats!

Tomorrow, we will make our app smart by adding artificial intelligence to it for detecting objects within your images as well as talking to our app.

Overcharged? We got you covered

Ask your coach if you did not succeed. We have you covered with a back up.

Use prepared Milligram backend Service

Look at the prepared application with our pictures for you to play around Milligram.

◀ Previous challenge | 🔼 Home | Next challenge ▶