Spaces:
Runtime error
Runtime error
alamin655
commited on
Commit
•
b083f84
1
Parent(s):
957ff69
Apply suggestions from code review
Browse files- .gitpod.yml +26 -26
.gitpod.yml
CHANGED
@@ -2,38 +2,38 @@
|
|
2 |
image: ubuntu:latest
|
3 |
# Commands that will run on workspace start
|
4 |
tasks:
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
# Ports to expose on workspace startup
|
10 |
ports:
|
|
|
|
|
11 |
port: 8080
|
12 |
-
onOpen: open-
|
13 |
-
name: Website
|
14 |
-
description: Website Preview
|
15 |
# vscode IDE setup
|
16 |
vscode:
|
17 |
extensions:
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
github:
|
38 |
prebuilds:
|
39 |
master: true
|
|
|
2 |
image: ubuntu:latest
|
3 |
# Commands that will run on workspace start
|
4 |
tasks:
|
5 |
+
- name: Setup, Install & Build
|
6 |
+
- before: apt install cargo redis-server nodejs npm && cargo test
|
7 |
+
- init: cargo install cargo-watch
|
8 |
+
- command: redis-server --port 8080 & cargo watch -q -w "." -x "run"
|
9 |
# Ports to expose on workspace startup
|
10 |
ports:
|
11 |
+
- name: Website
|
12 |
+
description: Website Preview
|
13 |
port: 8080
|
14 |
+
onOpen: open-browser
|
|
|
|
|
15 |
# vscode IDE setup
|
16 |
vscode:
|
17 |
extensions:
|
18 |
+
- vadimcn.vscode-lldb
|
19 |
+
- rust-lang.rust-analyzer
|
20 |
+
- bungcip.better-toml
|
21 |
+
- serayuzgur.crates
|
22 |
+
- usernamehw.errorlens
|
23 |
+
- DavidAnson.vscode-markdownlint
|
24 |
+
- esbenp.prettier-vscode
|
25 |
+
- stylelint.vscode-stylelint
|
26 |
+
- dbaeumer.vscode-eslint
|
27 |
+
- evgeniypeshkov.syntax-highlighter
|
28 |
+
- redhat.vscode-yaml
|
29 |
+
- ms-azuretools.vscode-docker
|
30 |
+
- GitHub.vscode-github-actions
|
31 |
+
- Catppuccin.catppuccin-vsc
|
32 |
+
- PKief.material-icon-theme
|
33 |
+
- tal7aouy.rainbow-bracket
|
34 |
+
- oderwat.indent-rainbow
|
35 |
+
- formulahendry.auto-rename-tag
|
36 |
+
- eamodio.gitlens
|
37 |
github:
|
38 |
prebuilds:
|
39 |
master: true
|