Skip to content

Commit fdc3a99

Browse files
committed
Add gitpod config
this commit adds support for Gitpod.io, a free automated dev environment that makes contributing and generally working on GitHub projects much easier. It allows anyone to start a ready-to-code dev environment for any branch, issue and pull request with a single click.
1 parent ff44b5a commit fdc3a99

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

.gitpod.Dockerfile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM gitpod/workspace-full
2+
3+
USER gitpod
4+
5+
# Install custom tools, runtime, etc. using apt-get
6+
# For example, the command below would install "bastet" - a command line tetris clone:
7+
#
8+
# RUN sudo apt-get -q update && # sudo apt-get install -yq bastet && # sudo rm -rf /var/lib/apt/lists/*
9+
#
10+
# More information: https://www.gitpod.io/docs/config-docker/

.gitpod.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
tasks:
2+
- init: mvn install -DskipTests=false
3+
image:
4+
file: .gitpod.Dockerfile

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/viewv/EncBox)
2+
13
# EncBox
24
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fviewv%2FEncBox.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fviewv%2FEncBox?ref=badge_shield) ![Java CI with Maven](https://github.com/viewv/EncBox/workflows/Java%20CI%20with%20Maven/badge.svg)
35

0 commit comments

Comments
 (0)