From cdb8c6ec32f6e666215fc0cc9213450c5bf1f6f8 Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Thu, 2 Nov 2023 08:40:38 +0000 Subject: [PATCH] feat(gitpod): Name the ports --- .gitpod.yml | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index 7dc30dc6c..1a3c54969 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -68,30 +68,41 @@ tasks: echo "" ports: - - port: 8000 + - name: Funkwhale + port: 8000 visibility: public onOpen: notify - - port: 5000 + - name: Funkwhale API + port: 5000 visibility: private onOpen: ignore - - port: 5432 + - name: PostgreSQL + port: 5432 visibility: private onOpen: ignore - - port: 5678 + - name: Debugpy + port: 5678 visibility: private onOpen: ignore - - port: 6379 + - name: Redis + port: 6379 visibility: private onOpen: ignore - - port: 8080 + - name: Frontend + port: 8080 visibility: private onOpen: ignore + - name: Documentation + port: 8001 + visibility: public + onOpen: notify + vscode: extensions: - Vue.volar