Skip to content

Commit 39263d1

Browse files
AJ Kerrigansaulpw
AJ Kerrigan
authored andcommitted
Fully automate dev setup with Gitpod
This commit implements a fully-automated development setup using Gitpod.io, an online IDE for GitHub and GitLab 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 ca50ea3 commit 39263d1

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

.gitpod.Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
FROM python:3

.gitpod.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
image:
2+
file: .gitpod.Dockerfile
3+
4+
tasks:
5+
- init: pip install -r ./dev/requirements-dev.txt && pip install -e .

.theia/settings.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"python.testing.pytestArgs": [
3+
"visidata"
4+
],
5+
"python.testing.unittestEnabled": false,
6+
"python.testing.nosetestsEnabled": false,
7+
"python.testing.pytestEnabled": true
8+
}

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/saulpw/visidata)
2+
13
# VisiData v2-5dev [![CircleCI](https://circleci.com/gh/saulpw/visidata/tree/develop.svg?style=svg)](https://circleci.com/gh/saulpw/visidata/tree/develop)
24

35
A terminal interface for exploring and arranging tabular data.

0 commit comments

Comments
 (0)