Skip to content

JenniferKerns/test-codespaces-skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Develop code using GitHub Codespaces and Visual Studio Code!

Step 1: Create your first codespace and push code

Welcome to "Develop code using GitHub Codespaces and Visual Studio Code"! 👋

What's the big deal about using a GitHub Codespace for software development: A codespace is a development environment that's hosted in the cloud. You can customize your project for GitHub Codespaces by committing configuration files to your repository (often known as Configuration-as-Code), which creates a repeatable codespace configuration for all users of your project. Each codespace you create is hosted by GitHub in a Docker container that runs on a virtual machine. You can choose the type of machine you want to use depending on the resources you need.

GitHub offers a range of features to help your development team customize a codespace to reach peak configuration and performance needs. Some features of GitHub Codespaces are:

  • Create a codespace from your repository
  • Push code from the codespace to your repository
  • Use VS Code to develop code
  • Customize the codespace with custom images
  • Manage the codespace

To begin developing using GitHub Codespaces, you can create a codespace from a template or from any branch or commit in a repository. When you create a codespace from a template, you can start from a blank template or choose a template suitable for the work you're doing.

⌨️ Activity: Start a GitHub Codespace

We recommend opening another browser tab to work through the following activities so you can keep these instructions open for reference.

  1. Start from the landing page of your repository.
  2. Click the green Code button located in the middle of the page.
  3. Select the Codespaces tab on the box that pops up and click the Create codespaces on main button. Wait about 2 minutes for the codespace to spin itself up. Note, its a VM spinning up in the background
  4. Verify your codespace is running. The browser should contain a VS code web based editor and a terminal should be present such as the below: codespace1

⌨️ Activity: Push code to your repository from the codespace

  1. From inside the codespace in the VS Code explorer window select the index.html file.
  2. Replace the h1 header with the below:
<h1>Hello from the codespace!</h1>
  1. Save the file. Note: The file should autosave.
  2. Commit the file change by using the VS Code terminal by entering the following commit message:
git commit -a -m "Adding hello from the codespace!"
  1. Push the changes back to your repository. From the VS Code terminal enter:
git push
  1. Your code has been pushed to your repository!
  2. Switch back to the homepage of your repository and view the index.html to verify the new code was pushed to your repository.

Wait about 20 seconds then refresh this page for the next step

Step 2: Add a custom image to your codespace!

Nice work! 🎉 You created your first GitHub Codespace and pushed codes using VS Code!

You can configure the dev container for a repository so that any codespace created for that repository will give you a tailored development environment, complete with all the tools and runtimes you need to work on a specific project.

What are Development containers?: Development containers, or dev containers, are Docker containers that are specifically configured to provide a fully featured development environment. Whenever you work in a codespace, you are using a dev container on a virtual machine.

A dev container file is a JSON file that lets you customize the default image that runs your codespace, VS code settings, run custom code, forward ports and much more!

Let's add a devcontainer.json file and add a custom image.

⌨️ Activity: Add a .devcontainer.json file to customize your GitHub Codespace

  1. Navigating back to your Code tab of your repository, click the Add file dropdown button.
  2. Click Create new file.
  3. Type or paste the folling in the empty text field prompt to name your file.
.devcontainer/devcontainer.json
  1. In the body of the new .devcontainer/devcontainer.json file, add the following content:
{
    // Name this configuration
    "name": "Codespace for Skills!",
    //Use base codespace image then pull Valet on postCreateCommand,  
    "image": "mcr.microsoft.com/vscode/devcontainers/universal:latest",
    
    "remoteUser": "codespace",
    "overrideCommand": false
}
  1. Click Commit changes directly to the main branch.
  2. Create a new codespace by navigating back to the Code tab of your repository.
  3. Click the green Code button located in the middle of the page.
  4. Click the Codespaces tab on the box that pops up.
  5. Click the + sign to create a new codespace on the main branch. (notice your other codespace listed) Wait about 2 minutes for the codespace to spin itself up. Note, its a VM spinning up in the background
  6. Verify that your new codespace is is running as you did above.

Note the image being used is the default image provided for GitHub Codespaces. It includes runtimes and tools for Python, Node.js, Docker, and more. See the full list here: https://aka.ms/ghcs-default-image but any custom image can be used by your development team that has the required prerequisites installed on their image for more see: codespace image for more details.

Wait about 20 seconds then refresh this page for the next step

Step 3: Customize your GitHub Codespace!

Nice work! 🎉 You created a codespace with a custom image!

You can customize GitHub Codespaces by adding VS code extensions, adding features, setting host requirements, and much more when the codespace is created.

Let's customize some setting in the .devcontainer.json file!

⌨️ Activity: Add customizations to the devcontainer file

  1. Navigate to the .devcontainer/devcontainer.json file.
  2. Add the following customizations to the body of the file before the last }.
    ,    
    // Add the IDs of extensions you want installed when the container is created.
    "customizations": {
        "vscode": {
            "extensions": [
                "GitHub.copilot"
            ]
        },
        "codespaces": {
            "openFiles": [
                "codespace.md"
            ]
        }
    }
  1. Click Commit changes directly to the main branch.
  2. Create a new Codespace by navigating to the landing page of your repository.
  3. Click the Code button located in the middle of the page.
  4. Click the Codespaces tab on the box that pops up.
  5. Click the Create codespaces on main button OR click the + sign on the tab. This will create a new Codespace on the main branch. Wait about 2 minutes for the codespace to spin itself up. Note, its a VM spinning up in the background
  6. Verify your codespace is is running as you did above.
  7. The codespace.md file should show up in the VS code editor.
  8. The copilot extension should show up in the VS code extension list.

This will add a VS code extension as well as open a file on start up of the codespace.

Next lets add some code to run on creation of the Codespace!

⌨️ Activity: Execute code on creation of the Codespace

  1. Edit the .devcontainer/devcontainer.json file.
  2. Add the following postCreateCommand to the body of the file before the last }.
    ,
    "postCreateCommand": "echo '# Writing code on Codespace Creation!'  >> codespace.md"
  1. Click Commit changes directly to the main branch.
  2. Create a new Codespace by navigating to the landing page of your repository.
  3. Click the Code button located in the middle of the page.
  4. Click the Codespaces tab on the box that pops up.
  5. Click the Create codespaces on main button OR click the + sign on the tab. This will create a new Codespace on the main branch. Wait about 2 minutes for the codespace to spin itself up. Note, its a VM spinning up in the background
  6. Verify your codespace is is running as you did above.
  7. Verify the codespace.md file now has the text Writing code on Codespace Creation!.

Wait about 20 seconds then refresh this page for the next step.

Step 4: Personalize your Codespace!

Nicely done customizing your Codespace! 🥳

When using any development environment customizing the settings and tools to your preferences and workflows is an important step. GitHub Codespaces allows for two main ways of personalizing your codespaces which are Settings Sync with VS Code and dot files.

Dot files will be the focus of this activity.

What are dot files?: Dotfiles are files and folders on Unix-like systems starting with . that control the configuration of applications and shells on your system. You can store and manage your dotfiles in a repository on GitHub.

Let's see how this works!

⌨️ Activity: Enable a dot file for your Codespace

  1. Start from the landing page of your repository.
  2. In the upper-right corner of any page, click your profile photo, then click Settings.
  3. In the Code, planning, and automation section of the sidebar, click Codespaces.
  4. Under Dotfiles, select Automatically install dotfiles so that GitHub Codespaces automatically installs your dotfiles into every new codespace you create.
  5. Choose YOUR current skills working repository as the repository install dotfiles from.

⌨️ Activity: Add a dot file to your reposiotry and run your Codespace

  1. Start from the landing page of your repository.

  2. Click the Code button located in the middle of the page.

  3. Click the Codespaces tab on the box that pops up.

  4. Click the Create codespaces on main button. Wait about 2 minutes for the codespace to spin itself up. Note, its a VM spinning up in the background

  5. Verify your codespace is is running. The browser should contain a VS code web based editor a a terminal should be present such as the below: codespace1

  6. From inside the Codespace in the VS Code explorer window create a new file setup.sh.

  7. Add the following code inside of the file:

#!/bin/bash

sudo apt-get update
sudo apt-get install sl
  1. Save the file. Note: The file should autosave.
  2. Commit the file changes. From the VS Code terminal enter:
git add setup.sh --chmod=+x
git commit -m "Adding setup.sh from the codespace!"
  1. Push the changes back to your repository. From the VS Code terminal enter:
git push
  1. Switch back to the homepage of your repository and view the setup.sh to verify the new code was pushed to your repository.
  2. Close the Codespace web browser tab.
  3. Click the Create codespaces on main button OR click the + sign on the tab. This will create a new Codespace on the main branch. Wait about 2 minutes for the codespace to spin itself up. Note, its a VM spinning up in the background
  4. Verify your codespace is is running as you did above.
  5. Verify the setup.sh file is present in your VS code editor.
  6. From the VS Code terminal type or paste:
/usr/games/sl
  1. Enjoy the show!

Wait about 20 seconds then refresh this page for the next step.

Finish

Congratulations friend, you've completed this course!

celebrate

Here's a recap of all the tasks you've accomplished in your repository:

  • You've learned how to create a Codespace and push code to your repository from the Codespace.
  • You've learned how to use custom images in your Codespace.
  • You've learned how to customize your Codespace.
  • You've learned how to persoalize your Codespace.

Additional learning and resources

What's next?


Get help: Review the GitHub status page

© 2022 TBD-copyright-holder • Code of ConductCC-BY-4.0 License

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages