From 61a4467fcec9e71523bfb5db6b4cc0bd1c165622 Mon Sep 17 00:00:00 2001 From: Ruidy Date: Thu, 11 Feb 2021 18:39:02 +0100 Subject: [PATCH] Fully automate dev setup with Gitpod (#1) 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. --- .gitpod.yml | 5 +++++ README.md | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 .gitpod.yml create mode 100644 README.md diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..8ed7cf2 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,5 @@ +image: gitpod/workspace-full + +tasks: + - init: cargo build + command: cargo watch -x run diff --git a/README.md b/README.md new file mode 100644 index 0000000..4c91b1c --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/rjNemo/rust-web) + +# Rust-web + +Small rust web service \ No newline at end of file