generated from DPI-WE/ruby-cli-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitpod.yml
32 lines (30 loc) · 832 Bytes
/
.gitpod.yml
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
27
28
29
30
31
32
image: jelaniwoods/appdev2023-rails-template
tasks:
- before: |
sudo cp -r /home/student /home/gitpod
(cd /home/gitpod/student; sudo find . -maxdepth 1 -exec mv {} .. \;)
source ~/.bashrc
sudo chmod 777 /home/gitpod && sudo chown -R gitpod /home/gitpod /home/student
export GEM_HOME=/workspace/.rvm
export GEM_PATH=$GEM_HOME:$GEM_PATH
export PATH=/workspace/.rvm/bin:$PATH
bin/setup
ports:
- port: 3000
onOpen: open-preview
visibility: public
- port: 4567
onOpen: open-preview
visibility: public
- port: 9292
onOpen: open-preview
visibility: public
- port: 5432
onOpen: ignore
vscode:
extensions:
- vortizhe.simple-ruby-erb
- mbessey.vscode-rufo
- aliariff.vscode-erb-beautify
- eamodio.gitlens
- setobiralo.erb-commenter