diff --git a/.devcontainer/advanced-integration-v2-html-dotnet/devcontainer.json b/.devcontainer/advanced-integration-v2-html-dotnet/devcontainer.json index d04cf42b..65fa37f6 100644 --- a/.devcontainer/advanced-integration-v2-html-dotnet/devcontainer.json +++ b/.devcontainer/advanced-integration-v2-html-dotnet/devcontainer.json @@ -1,6 +1,6 @@ // For more details, see https://aka.ms/devcontainer.json. { - "name": "advanced-integration/client-html/server-dotnet", + "name": "advanced-integration/html/dotnet", "image": "mcr.microsoft.com/devcontainers/dotnet:8.0", "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", // Use 'onCreateCommand' to run commands when creating the container. diff --git a/.devcontainer/advanced-integration-v2-html-java/devcontainer.json b/.devcontainer/advanced-integration-v2-html-java/devcontainer.json index 16915c08..a9e777b1 100644 --- a/.devcontainer/advanced-integration-v2-html-java/devcontainer.json +++ b/.devcontainer/advanced-integration-v2-html-java/devcontainer.json @@ -1,6 +1,6 @@ // For more details, see https://aka.ms/devcontainer.json. { - "name": "advanced-integration/client-html/server-java", + "name": "advanced-integration/html/java", "image": "mcr.microsoft.com/devcontainers/java:21", "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", // Use 'onCreateCommand' to run commands when creating the container. diff --git a/.devcontainer/advanced-integration-v2-html-node/devcontainer.json b/.devcontainer/advanced-integration-v2-html-node/devcontainer.json index efade83b..3e254123 100644 --- a/.devcontainer/advanced-integration-v2-html-node/devcontainer.json +++ b/.devcontainer/advanced-integration-v2-html-node/devcontainer.json @@ -1,6 +1,6 @@ // For more details, see https://aka.ms/devcontainer.json. { - "name": "advanced-integration/client-html/server-node", + "name": "advanced-integration/html/node", "image": "mcr.microsoft.com/devcontainers/javascript-node:20", "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", // Use 'onCreateCommand' to run commands when creating the container. diff --git a/.devcontainer/advanced-integration-v2-html-php/devcontainer.json b/.devcontainer/advanced-integration-v2-html-php/devcontainer.json index 477a6b79..ab087a51 100644 --- a/.devcontainer/advanced-integration-v2-html-php/devcontainer.json +++ b/.devcontainer/advanced-integration-v2-html-php/devcontainer.json @@ -1,6 +1,6 @@ // For more details, see https://aka.ms/devcontainer.json. { - "name": "advanced-integration/client-html/server-php", + "name": "advanced-integration/html/php", "image": "mcr.microsoft.com/devcontainers/php:8", "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", // Use 'onCreateCommand' to run commands when creating the container. diff --git a/.devcontainer/advanced-integration-v2-react-dotnet/devcontainer.json b/.devcontainer/advanced-integration-v2-react-dotnet/devcontainer.json index f26a59f1..4a21167a 100644 --- a/.devcontainer/advanced-integration-v2-react-dotnet/devcontainer.json +++ b/.devcontainer/advanced-integration-v2-react-dotnet/devcontainer.json @@ -1,6 +1,6 @@ // For more details, see https://aka.ms/devcontainer.json. { - "name": " advanced-integration/client-react/server-dotnet", + "name": " advanced-integration/react/dotnet", "image": "mcr.microsoft.com/devcontainers/dotnet:8.0", "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", // Use 'onCreateCommand' to run commands when creating the container. diff --git a/.devcontainer/advanced-integration-v2-react-java/devcontainer.json b/.devcontainer/advanced-integration-v2-react-java/devcontainer.json index f0f9b3b7..0a272c0f 100644 --- a/.devcontainer/advanced-integration-v2-react-java/devcontainer.json +++ b/.devcontainer/advanced-integration-v2-react-java/devcontainer.json @@ -1,6 +1,6 @@ // For more details, see https://aka.ms/devcontainer.json. { - "name": "advanced-integration/client-react/server-java", + "name": "advanced-integration/react/java", "image": "mcr.microsoft.com/devcontainers/java:21", "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", // Use 'onCreateCommand' to run commands when creating the container. diff --git a/.devcontainer/advanced-integration-v2-react-node/devcontainer.json b/.devcontainer/advanced-integration-v2-react-node/devcontainer.json index c8a98975..c1660b28 100644 --- a/.devcontainer/advanced-integration-v2-react-node/devcontainer.json +++ b/.devcontainer/advanced-integration-v2-react-node/devcontainer.json @@ -1,6 +1,6 @@ // For more details, see https://aka.ms/devcontainer.json. { - "name": "advanced-integration/client-react/server-node", + "name": "advanced-integration/react/node", "image": "mcr.microsoft.com/devcontainers/javascript-node:20", "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", // Use 'onCreateCommand' to run commands when creating the container. diff --git a/.devcontainer/advanced-integration-v2-react-php/devcontainer.json b/.devcontainer/advanced-integration-v2-react-php/devcontainer.json index 34a91fb0..b1870838 100644 --- a/.devcontainer/advanced-integration-v2-react-php/devcontainer.json +++ b/.devcontainer/advanced-integration-v2-react-php/devcontainer.json @@ -1,6 +1,6 @@ // For more details, see https://aka.ms/devcontainer.json. { - "name": "advanced-integration/client-react/server-php", + "name": "advanced-integration/react/php", "image": "mcr.microsoft.com/devcontainers/php:8", "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", // Use 'onCreateCommand' to run commands when creating the container. diff --git a/.devcontainer/post-commands.sh b/.devcontainer/post-commands.sh index db59d951..ffdf0fc3 100755 --- a/.devcontainer/post-commands.sh +++ b/.devcontainer/post-commands.sh @@ -26,13 +26,13 @@ setup_backend() { cd "$SERVER_DIR/node" && npm install ;; java) - cd "$SERVER_DIR" && touch java/.env && cd java && mvn clean install + cd "$SERVER_DIR" && cd java && mvn clean install ;; dotnet) cd "$SERVER_DIR/dotnet" && dotnet restore ;; php) - cd "$SERVER_DIR" && touch php/.env && cd php && composer install + cd "$SERVER_DIR" && cd php && composer install ;; *) echo "Unknown server: $VISIBLE_FOLDER_SERVER" diff --git a/.devcontainer/standard-integration-html-dotnet/devcontainer.json b/.devcontainer/standard-integration-html-dotnet/devcontainer.json index cfda05fb..810ffa39 100644 --- a/.devcontainer/standard-integration-html-dotnet/devcontainer.json +++ b/.devcontainer/standard-integration-html-dotnet/devcontainer.json @@ -1,6 +1,6 @@ // For more details, see https://aka.ms/devcontainer.json. { - "name": "standard-integration/client-html/server-dotnet", + "name": "standard-integration/html/dotnet", "image": "mcr.microsoft.com/devcontainers/dotnet:8.0", "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", // Use 'onCreateCommand' to run commands when creating the container. diff --git a/.devcontainer/standard-integration-html-java/devcontainer.json b/.devcontainer/standard-integration-html-java/devcontainer.json index 84a59669..88f7280a 100644 --- a/.devcontainer/standard-integration-html-java/devcontainer.json +++ b/.devcontainer/standard-integration-html-java/devcontainer.json @@ -1,6 +1,6 @@ // For more details, see https://aka.ms/devcontainer.json. { - "name": "standard-integration/client-html/server-java", + "name": "standard-integration/html/java", "image": "mcr.microsoft.com/devcontainers/java:21", "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", // Use 'onCreateCommand' to run commands when creating the container. diff --git a/.devcontainer/standard-integration-html-node/devcontainer.json b/.devcontainer/standard-integration-html-node/devcontainer.json index 2fc7df6d..beaa4863 100644 --- a/.devcontainer/standard-integration-html-node/devcontainer.json +++ b/.devcontainer/standard-integration-html-node/devcontainer.json @@ -1,6 +1,6 @@ // For more details, see https://aka.ms/devcontainer.json. { - "name": "standard-integration/client-html/server-node", + "name": "standard-integration/html/node", "image": "mcr.microsoft.com/devcontainers/javascript-node:20", "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", // Use 'onCreateCommand' to run commands when creating the container. diff --git a/.devcontainer/standard-integration-html-php/devcontainer.json b/.devcontainer/standard-integration-html-php/devcontainer.json index 8e219203..fc60c8f7 100644 --- a/.devcontainer/standard-integration-html-php/devcontainer.json +++ b/.devcontainer/standard-integration-html-php/devcontainer.json @@ -1,6 +1,6 @@ // For more details, see https://aka.ms/devcontainer.json. { - "name": "standard-integration/client-html/server-php", + "name": "standard-integration/html/php", "image": "mcr.microsoft.com/devcontainers/php:8", "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", // Use 'onCreateCommand' to run commands when creating the container. diff --git a/.devcontainer/standard-integration-react-dotnet/devcontainer.json b/.devcontainer/standard-integration-react-dotnet/devcontainer.json index 919d294f..d2a2e587 100644 --- a/.devcontainer/standard-integration-react-dotnet/devcontainer.json +++ b/.devcontainer/standard-integration-react-dotnet/devcontainer.json @@ -1,6 +1,6 @@ // For more details, see https://aka.ms/devcontainer.json. { - "name": "standard-integration/client-react/server-dotnet", + "name": "standard-integration/react/dotnet", "image": "mcr.microsoft.com/devcontainers/dotnet:8.0", "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", // Use 'onCreateCommand' to run commands when creating the container. diff --git a/.devcontainer/standard-integration-react-java/devcontainer.json b/.devcontainer/standard-integration-react-java/devcontainer.json index 5cdb28f2..d9f5d333 100644 --- a/.devcontainer/standard-integration-react-java/devcontainer.json +++ b/.devcontainer/standard-integration-react-java/devcontainer.json @@ -1,6 +1,6 @@ // For more details, see https://aka.ms/devcontainer.json. { - "name": "standard-integration/client-react/server-java", + "name": "standard-integration/react/java", "image": "mcr.microsoft.com/devcontainers/java:21", "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", // Use 'onCreateCommand' to run commands when creating the container. diff --git a/.devcontainer/standard-integration-react-node/devcontainer.json b/.devcontainer/standard-integration-react-node/devcontainer.json index 61e5d68c..fa64ab68 100644 --- a/.devcontainer/standard-integration-react-node/devcontainer.json +++ b/.devcontainer/standard-integration-react-node/devcontainer.json @@ -1,6 +1,6 @@ // For more details, see https://aka.ms/devcontainer.json. { - "name": "standard-integration/client-react/server-node", + "name": "standard-integration/react/node", "image": "mcr.microsoft.com/devcontainers/javascript-node:20", "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", // Use 'onCreateCommand' to run commands when creating the container. diff --git a/.devcontainer/standard-integration-react-php/devcontainer.json b/.devcontainer/standard-integration-react-php/devcontainer.json index e0af4870..e5bfcf12 100644 --- a/.devcontainer/standard-integration-react-php/devcontainer.json +++ b/.devcontainer/standard-integration-react-php/devcontainer.json @@ -1,6 +1,6 @@ // For more details, see https://aka.ms/devcontainer.json. { - "name": "standard-integration/client-react/server-php", + "name": "standard-integration/react/php", "image": "mcr.microsoft.com/devcontainers/php:8", "workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", // Use 'onCreateCommand' to run commands when creating the container.