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
302 B
13 lines
302 B
7 years ago
|
#!/bin/bash
|
||
|
|
||
|
printf "\n################## Setup web application ##################\n"
|
||
|
|
||
|
# Install third parties
|
||
|
npm install
|
||
|
|
||
|
# Create the directory of the web application
|
||
|
mkdir -p "$openvpn_admin"
|
||
|
cp -r "$base_path/"{app/,public/,vendor/,.env} "$openvpn_admin"
|
||
|
|
||
|
chown -R "$user:$group" "$openvpn_admin"
|