From b986a9d3b3c7c8db41c99d4cfda002329a31bb9f Mon Sep 17 00:00:00 2001 From: Supan Adit Pratama Date: Tue, 11 Mar 2025 07:42:58 +0000 Subject: [PATCH] chore: update port to default laravel with artisan serve --- .devcontainer/devcontainer.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index dc5160f..064788c 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -18,13 +18,12 @@ }, // Use 'forwardPorts' to make a list of ports inside the container available locally. "forwardPorts": [ - 8080 + 8000 ], "postCreateCommand": "sudo chmod a+x \"$(pwd)\" && sudo rm -rf /var/www/html && sudo ln -s \"$(pwd)\" /var/www/html", - // Use 'portsAttributes' to set default properties for specific forwarded ports. More info: https://code.visualstudio.com/docs/remote/devcontainerjson-reference. "portsAttributes": { - "8080": { - "label": "Apache Server", + "8000": { + "label": "PHP Artisan Serve", "onAutoForward": "notify" } }