From 7c12f95cff322e4f311cac50e1dda209f3e0e2f1 Mon Sep 17 00:00:00 2001 From: Ruidy Date: Sat, 20 Feb 2021 10:38:23 +0000 Subject: [PATCH] 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. --- .gitpod.yml | 2 ++ README.md | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..337682b --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,2 @@ +tasks: + - init: make diff --git a/README.md b/README.md index 2ebfc37..df9d9f3 100644 --- a/README.md +++ b/README.md @@ -1,3 +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/deno_hello) + # Hello Server Web app which returns the iconic Hello, World in various locales @@ -8,7 +10,9 @@ Web app which returns the iconic Hello, World in various locales - [x] Select the locale by id - [x] Use with CLI - [x] Basic HTTP server - +- [ ] Create a frontend (html template rendering) +- [ ] Deployment + ## Installation On macOS use HomeBrew to install `deno` then update to latest version.