0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-10-18 06:22:53 -04:00
websurfx/.gitpod.yml

45 lines
1.2 KiB
YAML
Raw Normal View History

2023-06-24 13:52:20 -04:00
---
2023-08-06 03:08:17 -04:00
image: gitpod/workspace-rust
2023-06-24 13:52:20 -04:00
# Commands that will run on workspace start
tasks:
2023-07-02 01:59:42 -04:00
- name: Setup, Install & Build
2023-08-06 03:08:17 -04:00
before: apt install redis-server nodejs npm -y
init: cargo build -r
command: redis-server --port 8080 & ./target/release/websurfx
2023-06-24 13:52:20 -04:00
# Ports to expose on workspace startup
ports:
2023-07-02 01:59:42 -04:00
- name: Website
description: Website Preview
2023-06-30 11:27:26 -04:00
port: 8080
2023-08-06 03:08:17 -04:00
onOpen: notify
2023-06-24 13:52:20 -04:00
# vscode IDE setup
vscode:
extensions:
2023-07-02 01:59:42 -04:00
- vadimcn.vscode-lldb
2023-07-03 11:55:46 -04:00
- cschleiden.vscode-github-actions
2023-08-06 03:08:17 -04:00
- rust-lang.rust-analyzer
2023-07-02 01:59:42 -04:00
- bungcip.better-toml
- serayuzgur.crates
- usernamehw.errorlens
- DavidAnson.vscode-markdownlint
- esbenp.prettier-vscode
- stylelint.vscode-stylelint
- dbaeumer.vscode-eslint
- evgeniypeshkov.syntax-highlighter
- ms-azuretools.vscode-docker
- Catppuccin.catppuccin-vsc
- PKief.material-icon-theme
- oderwat.indent-rainbow
- formulahendry.auto-rename-tag
- eamodio.gitlens
2023-06-24 13:52:20 -04:00
github:
prebuilds:
2023-06-30 11:27:26 -04:00
master: true
branches: true
pullRequests: true
pullRequestsFromForks: true
addCheck: true
addComment: false
addBadge: true