Gitpod

With Gitpod, you can get a full development environment in your browser with the click of a button or link, and you can write code right away.

Gitpod is an open-source Kubernetes application (GitHub repository address: https://github.com/gitpod-io/gitpod) for direct-to-code development environments, which spins up fresh, automated development environments for each task, in the cloud, in seconds. It enables you to describe your development environment as code and start instant, remote and cloud-based development environments directly from your browser or your Desktop IDE.

Quick start

  1. Fork the example code repository pingcap-inc/tidb-example-java for TiDB application development.

  2. Start your Gitpod workspace by prefixing the URL of the sample code repository with https://gitpod.io/# in the address bar of your browser.

    • For example, https://gitpod.io/#https://github.com/pingcap-inc/tidb-example-java.

    • You can configure environment variables in the URL. For example, https://gitpod.io/#targetFile=spring-jpa-hibernate_Makefile,targetMode=spring-jpa-hibernate/https://github.com/pingcap-inc/tidb-example-java.

  3. Log in and start the workspace using one of the providers listed. For example, Github.

Use the default Gitpod configuration and environment

After completing the quick-start steps, it will take a while for Gitpod to set up your workspace.

Take the Spring Boot Web application as an example. You can create a new workspace by the https://gitpod.io/#targetFile=spring-jpa-hibernate_Makefile,targetMode=spring-jpa-hibernate/https://github.com/pingcap-inc/tidb-example-java URL.

After that, you will see a page similar to the following:

playground gitpod workspace init

This scenario in the page uses TiUP to build a TiDB Playground. You can check the progress on the left side of the terminal area.

Once the TiDB Playground is ready, another Spring JPA Hibernate task will run. You can check the progress on the right side of the terminal area.

After all these tasks are finished, you will see a page similar to the following. On this page, check the REMOTE EXPLORER area in the left navigation pane (Gitpod supports URL-based port forwarding) and find the URL of your port 8080.

playground gitpod workspace ready

Using custom Gitpod configuration and Docker image

Customize Gitpod configurations

Referring to example.gitpod.yml, create a .gitpod. yml file in the root directory of your project to configure the Gitpod workspace.

  1. # This configuration file was automatically generated by Gitpod.
  2. # Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
  3. # and commit this file to your remote git repository to share the goodness with others.
  4. # image:
  5. # file: .gitpod.Dockerfile
  6. tasks:
  7. - name: Open Target File
  8. command: |
  9. if [ -n "$targetFile" ]; then code ${targetFile//[_]//}; fi
  10. - name: TiUP init playground
  11. command: |
  12. $HOME/.tiup/bin/tiup playground
  13. - name: Test Case
  14. openMode: split-right
  15. init: echo "*** Waiting for TiUP Playground Ready! ***"
  16. command: |
  17. gp await-port 3930
  18. if [ "$targetMode" == "plain-java-jdbc" ]
  19. then
  20. cd plain-java-jdbc
  21. code src/main/resources/dbinit.sql
  22. code src/main/java/com/pingcap/JDBCExample.java
  23. make mysql
  24. elif [ "$targetMode" == "plain-java-hibernate" ]
  25. then
  26. cd plain-java-hibernate
  27. make
  28. elif [ "$targetMode" == "spring-jpa-hibernate" ]
  29. then
  30. cd spring-jpa-hibernate
  31. make
  32. fi
  33. ports:
  34. - port: 8080
  35. visibility: public
  36. - port: 4000
  37. visibility: public
  38. - port: 2379-36663
  39. onOpen: ignore

Customize Gitpod Docker images

By default, Gitpod uses a standard Docker image named Workspace-Full as the basis for the workspace. Workspaces launched from this default image are pre-installed with Docker, Go, Java, Node.js, C/C++, Python, Ruby, Rust, PHP, and tools such as Homebrew, Tailscale, and Nginx.

You can use a public Docker image or a Dockerfile and also install any required dependencies for your project.

For example, you can use a Dockerfile (see also Example .gitpod.Dockerfile) as follows:

  1. FROM gitpod/workspace-java-17
  2. RUN sudo apt install mysql-client -y
  3. RUN curl --proto '=https' --tlsv1.2 -sSf https://tiup-mirrors.pingcap.com/install.sh | sh

Then, you need to update .gitpod.yml:

  1. # This configuration file was automatically generated by Gitpod.
  2. # Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
  3. # and commit this file to your remote git repository to share the goodness with others.
  4. image:
  5. # Import your Dockerfile here.
  6. file: .gitpod.Dockerfile
  7. tasks:
  8. - name: Open Target File
  9. command: |
  10. if [ -n "$targetFile" ]; then code ${targetFile//[_]//}; fi
  11. - name: TiUP init playground
  12. command: |
  13. $HOME/.tiup/bin/tiup playground
  14. - name: Test Case
  15. openMode: split-right
  16. init: echo "*** Waiting for TiUP Playground Ready! ***"
  17. command: |
  18. gp await-port 3930
  19. if [ "$targetMode" == "plain-java-jdbc" ]
  20. then
  21. cd plain-java-jdbc
  22. code src/main/resources/dbinit.sql
  23. code src/main/java/com/pingcap/JDBCExample.java
  24. make mysql
  25. elif [ "$targetMode" == "plain-java-hibernate" ]
  26. then
  27. cd plain-java-hibernate
  28. make
  29. elif [ "$targetMode" == "spring-jpa-hibernate" ]
  30. then
  31. cd spring-jpa-hibernate
  32. make
  33. fi
  34. ports:
  35. - port: 8080
  36. visibility: public
  37. - port: 4000
  38. visibility: public
  39. - port: 2379-36663
  40. onOpen: ignore

Apply changes

After completing the configuration of the .gitpod.yml file, make sure that the latest code is available in your corresponding GitHub repository.

Visit https://gitpod.io/#<YOUR_REPO_URL> to create a new Gitpod workspace with the latest code applied.

Visit https://gitpod.io/workspaces for all established workspaces.

Summary

Gitpod provides a complete, automated, and pre-configured cloud-native development environment. You can develop, run, and test code directly in the browser without any local configurations.

playground gitpod summary