Ben 3 달 전
부모
커밋
859edcc349
5개의 변경된 파일23개의 추가작업 그리고 9개의 파일을 삭제
  1. 2 9
      hue/docker-compose.yaml
  2. 4 0
      hue/hue.ini
  3. 0 0
      vscode/.env
  4. 17 0
      vscode/README.md
  5. 0 0
      vscode/docker-compose.yaml

+ 2 - 9
hue/docker-compose.yaml

@@ -4,14 +4,7 @@ services:
     container_name: hue
     ports:
       - "8888:8888"
+    volumes:
+      - ./hue.ini:/usr/share/hue/desktop/conf/z-hue.ini
     labels:
       "com.helios.target": "http://localhost:8888"
-
-volumes:
-  cloudbeaver: {}
-  cloudbeaver_certs: {}
-  postgres_data: {}
-  nginx_ssl_data: {}
-  nginx_conf_data: {}
-  trusted_cacerts: {}
-  api_tokens: {}

+ 4 - 0
hue/hue.ini

@@ -0,0 +1,4 @@
+[desktop]
+# Set to false to disable all CSRF protection. Default is True.
+# Note: Disabling CSRF protection can expose your application to security risks. Use with caution.
+csrf_protection_enabled=false

+ 0 - 0
vscode/.env


+ 17 - 0
vscode/README.md

@@ -0,0 +1,17 @@
+# Visual Studio Code
+
+## Create Project
+
+```sh
+# Create Project
+helios project add vscode --repo https://github.com/bmallen-xs/Helios-Services --ref main --path vscode
+
+# Clone / Pull
+helios project pull vscode
+```
+
+## Run
+
+```sh
+helios project up vscode
+```

+ 0 - 0
vscode/docker-compose.yaml