Skip to content

Commit ff8c042

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 8e347ea commit ff8c042

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

.gitpod.Dockerfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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/
8+
RUN pip install nbdev
9+
RUN pip install networkx
10+
RUN pip install matplotlib
11+
RUN nbdev_install_git_hooks
12+
# Jekyll for GitHub Pages
13+
RUN gem install jekyll bundler
14+
RUN cd docs && bundle install

.gitpod.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
image:
2+
file: .gitpod.Dockerfile
3+
4+
tasks:
5+
- init: make

README.md

Lines changed: 2 additions & 0 deletions
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/jnareb/git-commit-graph-ext)
2+
13
# Commit graph labeling for speeding up Git commands
24
> Explore possible extensions to the serialized commit-graph format in Git, including adding reachability indexes for graph of revisions
35

0 commit comments

Comments
 (0)