-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitpod.yml
More file actions
26 lines (22 loc) · 745 Bytes
/
.gitpod.yml
File metadata and controls
26 lines (22 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# This configuration file was automatically generated by Gitpod.
# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml)
# and commit this file to your remote git repository to share the goodness with others.
# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart
image: gitpod/workspace-ruby-3
tasks:
- init: |
(
set -e # Tells bash to immediately exit on failure off a command
sudo apt install -y rsync
bundle install
bundle exec nanoc compile
)
command: |
(
set -e
bundle install
bundle exec nanoc live
)
ports:
- port: 3000
onOpen: open-browser