mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	VSCode / devcontainer updates (#4647)
This commit is contained in:
		| @@ -4,12 +4,17 @@ | |||||||
|   "postCreateCommand": [ |   "postCreateCommand": [ | ||||||
|     "script/devcontainer-post-create" |     "script/devcontainer-post-create" | ||||||
|   ], |   ], | ||||||
|  |   "containerEnv": { | ||||||
|  |     "DEVCONTAINER": "1" | ||||||
|  |   }, | ||||||
|   "runArgs": [ |   "runArgs": [ | ||||||
|     "--privileged", |     "--privileged", | ||||||
|     "-e", |     "-e", | ||||||
|     "ESPHOME_DASHBOARD_USE_PING=1" |     "ESPHOME_DASHBOARD_USE_PING=1" | ||||||
|   ], |   ], | ||||||
|   "appPort": 6052, |   "appPort": 6052, | ||||||
|  |   "customizations": { | ||||||
|  |     "vscode": { | ||||||
|       "extensions": [ |       "extensions": [ | ||||||
|         // python |         // python | ||||||
|         "ms-python.python", |         "ms-python.python", | ||||||
| @@ -51,6 +56,8 @@ | |||||||
|         "files.associations": { |         "files.associations": { | ||||||
|           "**/.vscode/*.json": "jsonc" |           "**/.vscode/*.json": "jsonc" | ||||||
|         }, |         }, | ||||||
|     "C_Cpp.clang_format_path": "/usr/bin/clang-format-13", |         "C_Cpp.clang_format_path": "/usr/bin/clang-format-13" | ||||||
|  |       } | ||||||
|  |     } | ||||||
|   } |   } | ||||||
| } | } | ||||||
|   | |||||||
							
								
								
									
										15
									
								
								.vscode/tasks.json
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										15
									
								
								.vscode/tasks.json
									
									
									
									
										vendored
									
									
								
							| @@ -2,15 +2,24 @@ | |||||||
|   "version": "2.0.0", |   "version": "2.0.0", | ||||||
|   "tasks": [ |   "tasks": [ | ||||||
|     { |     { | ||||||
|       "label": "run", |       "label": "Run Dashboard", | ||||||
|       "type": "shell", |       "type": "shell", | ||||||
|       "command": "python3 -m esphome dashboard config/", |       "command": "${command:python.interpreterPath}", | ||||||
|  |       "args": [ | ||||||
|  |         "-m", | ||||||
|  |         "esphome", | ||||||
|  |         "dashboard", | ||||||
|  |         "config/" | ||||||
|  |       ], | ||||||
|       "problemMatcher": [] |       "problemMatcher": [] | ||||||
|     }, |     }, | ||||||
|     { |     { | ||||||
|       "label": "clang-tidy", |       "label": "clang-tidy", | ||||||
|       "type": "shell", |       "type": "shell", | ||||||
|       "command": "./script/clang-tidy", |       "command": "${command:python.interpreterPath}", | ||||||
|  |       "args": [ | ||||||
|  |         "./script/clang-tidy" | ||||||
|  |       ], | ||||||
|       "problemMatcher": [ |       "problemMatcher": [ | ||||||
|         { |         { | ||||||
|           "owner": "clang-tidy", |           "owner": "clang-tidy", | ||||||
|   | |||||||
| @@ -4,6 +4,12 @@ | |||||||
| set -e | set -e | ||||||
|  |  | ||||||
| cd "$(dirname "$0")/.." | cd "$(dirname "$0")/.." | ||||||
|  |  | ||||||
|  | if [ ! -n "$DEVCONTAINER" ] && [ ! -n "$VIRTUAL_ENV" ]; then | ||||||
|  |   python3 -m venv venv | ||||||
|  |   source venv/bin/activate | ||||||
|  | fi | ||||||
|  |  | ||||||
| pip3 install -r requirements.txt -r requirements_optional.txt -r requirements_test.txt | pip3 install -r requirements.txt -r requirements_optional.txt -r requirements_test.txt | ||||||
| pip3 install --no-use-pep517 -e . | pip3 install --no-use-pep517 -e . | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user