diff --git a/.ide/.gitignore b/.ide/.gitignore new file mode 100644 index 000000000..e05080462 --- /dev/null +++ b/.ide/.gitignore @@ -0,0 +1 @@ +/.temp/ \ No newline at end of file diff --git a/.ide/.ide.yaml b/.ide/.ide.yaml index e69de29bb..972565cbf 100644 --- a/.ide/.ide.yaml +++ b/.ide/.ide.yaml @@ -0,0 +1,33 @@ +version: smartide/v0.1 +orchestrator: + type: docker-compose + version: 3 +workspace: + dev-container: + service-name: ruoyi-dev + ports: + webide: 6800 + ssh: 6822 + application: 3001 + ide-type: vscode + volumes: + git-config: true + ssh-key: true + services: + ruoyi-dev: + image: registry.cn-hangzhou.aliyuncs.com/smartide/smartide-java-v2-vscode:2070 + restart: always + environment: + ROOT_PASSWORD: root123 + LOCAL_USER_PASSWORD: root123 + ports: + - 3001:3001 + - 6822:22 + - 6800:3000 + volumes: + - .:/home/project + networks: + - smartide-network + networks: + smartide-network: + external: true \ No newline at end of file