alamin655
commited on
Update .gitpod.yml
Browse files- .gitpod.yml +10 -3
.gitpod.yml
CHANGED
|
@@ -4,9 +4,15 @@ image:
|
|
| 4 |
|
| 5 |
# Commands that will run on workspace start
|
| 6 |
tasks:
|
| 7 |
-
- name:
|
| 8 |
-
|
| 9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
|
| 11 |
# vscode IDE setup
|
| 12 |
vscode:
|
|
@@ -32,6 +38,7 @@ vscode:
|
|
| 32 |
- hbenl.test-adapter-converter
|
| 33 |
- hbenl.vscode-test-explorer
|
| 34 |
- eamodio.gitlens
|
|
|
|
| 35 |
github:
|
| 36 |
prebuilds:
|
| 37 |
master: true
|
|
|
|
| 4 |
|
| 5 |
# Commands that will run on workspace start
|
| 6 |
tasks:
|
| 7 |
+
- name: Start Redis Server
|
| 8 |
+
command: redis-server --port 8082
|
| 9 |
+
- name: Run The App
|
| 10 |
+
init: cargo build
|
| 11 |
+
command: PKG_ENV=dev ./target/release/websurfx
|
| 12 |
+
- name: Tests
|
| 13 |
+
command: cargo test
|
| 14 |
+
- name: Clippy Checks
|
| 15 |
+
command: cargo clippy
|
| 16 |
|
| 17 |
# vscode IDE setup
|
| 18 |
vscode:
|
|
|
|
| 38 |
- hbenl.test-adapter-converter
|
| 39 |
- hbenl.vscode-test-explorer
|
| 40 |
- eamodio.gitlens
|
| 41 |
+
|
| 42 |
github:
|
| 43 |
prebuilds:
|
| 44 |
master: true
|