From e39c8558b97d0477828f36c320c2edeacd870d86 Mon Sep 17 00:00:00 2001 From: Josh Abernathy Date: Fri, 4 Nov 2022 18:42:37 +0000 Subject: [PATCH] Standardize formatting --- .devcontainer/devcontainer.json | 47 ++++++++++++++++++--------------- 1 file changed, 26 insertions(+), 21 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index fa15d4b..e1ec342 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,24 +1,29 @@ { - "postAttachCommand": { - "server": "rails server", + "hostRequirements": { + "cpus": 4 + }, + "waitFor": "onCreateCommand", + "updateContentCommand": "bundle install --local", + "postCreateCommand": "", + "postAttachCommand": { + "server": "rails server" + }, + "customizations": { + "codespaces": { + "openFiles": [ + "app/views/hello/index.html.erb" + ] }, - "portsAttributes": { - "3000": { - "label": "Application", - "onAutoForward": "openPreview" - } - }, - "customizations": { - "codespaces": { - "openFiles": ["app/views/hello/index.html.erb"] - }, - "vscode": { - "extensions": [ - "rebornix.Ruby" - ], - } - }, - "onCreateCommand": "bundle install --local", - "postCreateCommand": "", - "hostRequirements": {"cpus": 4} + "vscode": { + "extensions": [ + "rebornix.Ruby" + ] + } + }, + "portsAttributes": { + "3000": { + "label": "Application", + "onAutoForward": "openPreview" + } } +}