-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #76 from publiclab/feat/gitpod
Adding gitpod configs
- Loading branch information
Showing
3 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM gitpod/workspace-full | ||
|
||
# Install dependencies. | ||
RUN sudo apt-get update -qq && \ | ||
sudo apt-get install -y \ | ||
gdal-bin \ | ||
ruby \ | ||
zlib1g-dev \ | ||
imagemagick \ | ||
ruby-sinatra \ | ||
ruby-kramdown \ | ||
ruby-nokogiri \ | ||
bundler \ | ||
gdal-bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
image: | ||
file: .gitpod.dockerfile | ||
ports: | ||
- port: 3000 | ||
onOpen: open-preview | ||
tasks: | ||
- init: bundle install | ||
command: bundle exec ruby app.rb -o 0.0.0.0 -p 3000 | ||
|
||
github: | ||
prebuilds: | ||
branches: true | ||
pullRequests: true | ||
pullRequestsFromForks: true | ||
addCheck: true | ||
addComment: true | ||
addBadge: false | ||
addLabel: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters