Blog Engineering Quickstart guide for GitLab Remote Development workspaces
June 26, 2023
5 min read

Quickstart guide for GitLab Remote Development workspaces

Learn how to create a workspace from your GitLab account and work directly from the remote development environment.

2023-06-22-quickstart-workspaces-cover-image2.png

GitLab 16.0 introduced Remote Development workspaces (beta), an exciting addition to the GitLab platform that empowers teams to build and deliver software more efficiently.

This guide provides step-by-step instructions on how to create a workspace directly from your GitLab account and work directly from the remote development environment. You will work in the Web IDE, a Visual Studio Code browser version, seamlessly integrated into the workspace.

From this quick start, you will learn how to create a workspace, use the Web IDE Terminal to install dependencies or start your server, and view your running application.

To learn more about Remote Development in GitLab, we recommend reading this informative blog post, "A first look at workspaces," and the workspaces docs.

Here are the steps covered in this tutorial:

Prerequisites

Prior to enabling developers to create workspaces, there are a few prerequisites such as bring your own Kubernetes cluster, and install and configure the GitLab agent for Kubernetes on it. Additionally, certain configuration steps must be completed on the cluster. You can find detailed instructions for all these steps in our workspaces prequisites documentation. Once the prerequisites are properly configured, developers who hold Developer role or above within the root group will gain the ability to create workspaces.

Locate DevFile at the root of repository

A devfile is a declarative configuration file, in YAML syntax, used to define and describe the development environment for a software project. It provides a standardized way to specify the necessary tools, languages, runtimes, and other components required for developing an application.

To initiate a workspace, it is necessary to have a devfile located at the root of the repository. In this blog post, we will utilize a project that contains a devfile, accessible here.

schemaVersion: 2.2.0
components:
  - name: tooling-container
    attributes:
      gl/inject-editor: true
    container:
      # NOTE: THIS IMAGE EXISTS ONLY FOR DEMO PURPOSES AND WILL NOT BE MAINTAINED
      image: registry.gitlab.com/gitlab-org/remote-development/gitlab-remote-development-docs/debian-bullseye-ruby-3.2-node-18.12:rubygems-3.4-git-2.33-lfs-2.9-yarn-1.22-graphicsmagick-1.3.36-gitlab-workspaces
      memoryRequest: 1024M
      memoryLimit: 2048M
      cpuRequest: 500m
      cpuLimit: 1000m
      endpoints:
      - name: http-3000
        targetPort: 3000

For more information, see the GitLab documentation and devfile documentation.

Create your workspace

  1. Make sure you have a Developer role or above in the root group, and the above prerequisites configured properly.
  2. Fork this project to the GitLab group for which you have a Developer role or above.
  3. Switch contexts and select Your work. Your work
  4. Select Workspaces.
  5. Select New workspace.
  6. Select the project you forked or another project that has a .devfile.yaml file at the root of the repository.
  7. Select the cluster agent owned by the group the project belongs to.
  8. In Time before automatic termination, enter the number of hours until the workspace automatically terminates. This timeout is a safety measure to prevent a workspace from consuming excessive resources or running indefinitely.
  9. Select Create workspace.

create ws

The workspace will be deployed to the cluster and might take a few minutes to start. To access the workspace, under Preview, select the workspace link.

ws list

Install dependencies and previewing your application in the workspace

After creating your workspace, the Web IDE using VS Code is injected into it, and the repository is cloned to the image. Consequently, you gain immediate access to your code and can commence working on it right away.

You can now open the terminal, install any missing dependencies, and start the application.

Terminal

  1. To open the terminal, from the left menu, select Terminal, New Terminal.
  2. Type npm install to install the dependencies listed in the package.json file.
  3. Type npm start to start the application.

The log will indicate that the application has started on port 3000.

log

You can now access your application by opening the browser and using the same URL as your workspace, but with the port changed to 3000.

Make changes to the application and previewing the updated version

In the Web IDE, navigate to the server.js file, modify the text in line 9.

Afterward, refresh the browser where your application is opened to see the applied changes.

Commit the change

  1. In the Web IDE click on the merge icon in the activity bar.
  2. Click the line with the server.js to view your change side by side.
  3. To stage your change, click the plus icon next to server.js.
  4. Type a commit message describing your change.
  5. Click Commit.
  6. Click Sync changes to push the commit to the GitLab server.

commit

Explore the demo

Explore further with this click-through demo of workspaces.

Try out workspaces

Remote Development workspaces offer a convenient and efficient way to work on projects without the need for local development setups. They provide a streamlined workflow and enable developers to focus on writing code rather than dealing with complex environment setups.

By adopting workspaces, developers can collaborate effectively, improve productivity, and simplify the development process.

Give workspaces a try and revolutionize your remote development experience today!

Cover image by Pankaj Patel on Unsplash

We want to hear from you

Enjoyed reading this blog post or have questions or feedback? Share your thoughts by creating a new topic in the GitLab community forum. Share your feedback

Ready to get started?

See what your team could do with a unified DevSecOps Platform.

Get free trial

New to GitLab and not sure where to start?

Get started guide

Learn about what GitLab can do for your team

Talk to an expert