mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
20 lines
521 B
Bash
Executable file
20 lines
521 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
|
|
# Prepare the workspace files with the values from the devcontainer.env file
|
|
set -a
|
|
source $workspaceFolder/.devcontainer/.env
|
|
|
|
echo ">>> Development Setup"
|
|
sudo apt-get update
|
|
|
|
envsubst < $workspaceFolder/.devcontainer/include/my.cnf > /home/vscode/.my.cnf
|
|
|
|
#Make the workspace directory the docroot
|
|
echo ">>> Symlink $DocumentRoot to $workspaceFolder"
|
|
sudo rm -rf $DocumentRoot
|
|
sudo ln -fs $workspaceFolder $DocumentRoot
|
|
|
|
echo 'error_reporting=0' | sudo tee /usr/local/etc/php/conf.d/no-warn.ini
|
|
|
|
exit 0
|