Updated dev container configuration

- moved vscode launch.json to .devcontainer
 - added forwardPorts to devcontainer.json
 - create log file in postCreate.sh
This commit is contained in:
ne20002 2024-08-06 14:12:50 +00:00
parent dc145bb440
commit 07d6500700
No known key found for this signature in database
5 changed files with 20 additions and 4 deletions

View file

@ -8,6 +8,9 @@ source $workspaceFolder/.devcontainer/.env
echo ">>> Development Setup"
sudo apt-get update
# VSCode debugger profile
mkdir -p .vscode && cp .devcontainer/launch.json .vscode/launch.json
envsubst < $workspaceFolder/.devcontainer/include/my.cnf > /home/vscode/.my.cnf
#Make the workspace directory the docroot
@ -17,4 +20,10 @@ sudo ln -fs $workspaceFolder $DocumentRoot
echo 'error_reporting=0' | sudo tee /usr/local/etc/php/conf.d/no-warn.ini
# create log file
mkdir -p log
touch log/friendica.log
chmod 666 log/friendica.log
exit 0