-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into vs-code-integration
- Loading branch information
Showing
15 changed files
with
303 additions
and
302 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
**/.git | ||
**/.svn | ||
**/.hg | ||
**/node_modules | ||
**/dist | ||
**/.cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,56 @@ | ||
{ | ||
/* | ||
* Base VSCode settings | ||
*/ | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": true | ||
}, | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnPaste": true, | ||
"editor.formatOnSave": true, | ||
/* | ||
* Extension settings | ||
* wayou.vscode-todo-highlight | ||
*/ | ||
"todohighlight.defaultStyle": { | ||
"color": "white", | ||
"backgroundColor": "orange" | ||
}, | ||
"todohighlight.keywordsPattern": "(todo|TODO|fixme|FIXME)(:?)", | ||
"terminal.integrated.profiles.linux": { | ||
"strapi": { | ||
"path": "docker", | ||
"args": ["exec", "-it", "clic-strapi", "/bin/bash"], | ||
"overrideName": true | ||
}, | ||
"postgres": { | ||
"path": "docker", | ||
"args": ["exec", "-it", "clic-postgres", "/bin/bash"], | ||
"overrideName": true | ||
} | ||
/* | ||
* Base VSCode settings | ||
*/ | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": true | ||
}, | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnPaste": true, | ||
"editor.formatOnSave": true, | ||
/* | ||
* Extension settings | ||
* wayou.vscode-todo-highlight | ||
*/ | ||
"todohighlight.defaultStyle": { | ||
"color": "white", | ||
"backgroundColor": "orange" | ||
}, | ||
"todohighlight.keywordsPattern": "(todo|TODO|fixme|FIXME)(:?)", | ||
"terminal.integrated.profiles.linux": { | ||
"strapi": { | ||
"path": "docker", | ||
"args": ["exec", "-it", "clic-strapi", "/bin/bash"], | ||
"overrideName": true | ||
}, | ||
"terminal.integrated.profiles.windows": { | ||
"strapi": { | ||
"path": "docker", | ||
"args": ["exec", "-it", "clic-strapi", "/bin/bash"], | ||
"overrideName": true | ||
}, | ||
"postgres": { | ||
"path": "docker", | ||
"args": ["exec", "-it", "clic-postgres", "/bin/bash"], | ||
"overrideName": true | ||
} | ||
"postgres": { | ||
"path": "docker", | ||
"args": ["exec", "-it", "clic-postgres", "/bin/bash"], | ||
"overrideName": true | ||
} | ||
}, | ||
"terminal.integrated.profiles.windows": { | ||
"strapi": { | ||
"path": "docker", | ||
"args": ["exec", "-it", "clic-strapi", "/bin/bash"], | ||
"overrideName": true | ||
}, | ||
"terminal.integrated.profiles.osx": { | ||
"strapi": { | ||
"postgres": { | ||
"path": "docker", | ||
"args": ["exec", "-it", "clic-postgres", "/bin/bash"], | ||
"overrideName": true | ||
} | ||
}, | ||
"terminal.integrated.profiles.osx": { | ||
"strapi": { | ||
"path": "docker", | ||
"args": ["exec", "-it", "clic-strapi", "/bin/bash"], | ||
"overrideName": true | ||
}, | ||
"postgres": { | ||
"path": "docker", | ||
"args": ["exec", "-it", "clic-postgres", "/bin/bash"], | ||
"overrideName": true | ||
} | ||
"overrideName": true | ||
}, | ||
"postgres": { | ||
"path": "docker", | ||
"args": ["exec", "-it", "clic-postgres", "/bin/bash"], | ||
"overrideName": true | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,34 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [{ | ||
"label": "Start dev container", | ||
"type": "shell", | ||
"command": "docker compose --file .devcontainer/docker-compose.yaml up", | ||
"windows": { | ||
"command": "docker compose --file .devcontainer\\docker-compose.yaml up" | ||
}, | ||
"group": "none", | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "new" | ||
}, | ||
"runOptions": { | ||
"runOn": "folderOpen" | ||
} | ||
}, { | ||
"label": "Stop dev container", | ||
"type": "shell", | ||
"command": "docker compose --file .devcontainer/docker-compose.yaml down", | ||
"windows": { | ||
"command": "docker compose --file .devcontainer\\docker-compose.yaml down" | ||
}, | ||
"group": "none", | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "new" | ||
} | ||
} | ||
] | ||
} | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Start dev container", | ||
"type": "shell", | ||
"command": "docker compose --file .devcontainer/docker-compose.yaml up", | ||
"windows": { | ||
"command": "docker compose --file .devcontainer\\docker-compose.yaml up" | ||
}, | ||
"group": "none", | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "new" | ||
}, | ||
"runOptions": { | ||
"runOn": "folderOpen" | ||
} | ||
}, | ||
{ | ||
"label": "Stop dev container", | ||
"type": "shell", | ||
"command": "docker compose --file .devcontainer/docker-compose.yaml down", | ||
"windows": { | ||
"command": "docker compose --file .devcontainer\\docker-compose.yaml down" | ||
}, | ||
"group": "none", | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "new" | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.