Skip to content

Commit fa3051f

Browse files
committed
Fully automate dev setup with Gitpod
This commit implements a fully-automated development setup using Gitpod.io, an online IDE for GitLab, GitHub, and Bitbucket that enables Dev-Environments-As-Code. This makes it easy for anyone to get a ready-to-code workspace for any branch, issue or pull request almost instantly with a single click.
1 parent 1bb6e22 commit fa3051f

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

.gitpod.Dockerfile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM gitpod/workspace-full
2+
3+
# Install custom tools, runtimes, etc.
4+
# For example "bastet", a command-line tetris clone:
5+
# RUN brew install bastet
6+
#
7+
# More information: https://www.gitpod.io/docs/config-docker/

.gitpod.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
image:
2+
file: .gitpod.Dockerfile
3+
- command: apt-get update && apt-get install flex
4+
5+
tasks:
6+
- init: make

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/EmbeddedRPC/erpc)
2+
13
# eRPC
24

35
eRPC (Embedded RPC) is an open source Remote Procedure Call (RPC) system for multichip embedded systems and heterogeneous multicore SoCs.

0 commit comments

Comments
 (0)