Improvement

This commit is contained in:
matic_t
2020-07-10 04:14:45 -07:00
parent 4dab55bec0
commit e37cf198cf
2 changed files with 8 additions and 2 deletions

View File

@@ -1,8 +1,12 @@
#!/bin/bash
#############################################################################
# NOTE: Update .template if logical changes are made to the script #
#############################################################################
#USERNAME= vps sign in
# Alter these variables
#USERNAME= vps_sign_in(probably name@lexonomy.cjvt.si
#VPS_PASSWORD= vps password
#VPS_USERNAME= user name inside vps
#VPS_USERNAME= user name inside vps(probably name from @lexonomy)
#API_KEY= $(cat path/to/api/token/file)
# Exit if no argument is passed on run
@@ -19,4 +23,5 @@ API_KEY=$API_KEY make
tar czf - ./config.json ./bundle.js ./local.js ./main.css ./main.html | ssh $USERNAME -p $VPS_PASSWORD "cd plugins && mkdir $PLUGIN_NAME && cd $PLUGIN_NAME && tar xvzf -"
# Create a simlink on VPS that will enable specific plugin on https://lexonomy.cjvt.si/
# Routes must be absolute or it doesn't work.
ssh -t $USERNAME -p $VPS_PASSWORD "sudo ln -s /home/$VPS_USERNAME/plugins/$PLUGIN_NAME /home/ozbolt/plugins/$PLUGIN_NAME"