You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 lines
328 B

#!/bin/bash
printf "\n################## Setup web application ##################\n"
# Install third parties
composer install
npm install
# Create the directory of the web application
mkdir -p "$openvpn_admin"
cp -r "$base_path/"{scripts/,app/,public/,vendor/,.env} "$openvpn_admin"
chown -R "$user:$group" "$openvpn_admin"