-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e63b552
commit 7884442
Showing
3 changed files
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ echo "Update the target directory in this script before you run it" | |
echo "Run this script from the app install directory as scripts/installScripts.sh" | ||
[email protected]:/home/erik | ||
echo "This script copies the server side scripts to : $TARGET_DIR" | ||
echo "Copy the scripts removeOldUpload.sh and installOneBacklog.sh to your home directory at your developemt host to run them from there" | ||
echo "Copy the scripts removeOldUpload.sh and installOneBacklog.sh to your home directory at your application server to run them from there" | ||
scp scripts/removeOldUpload.sh scripts/installOneBacklog.sh $TARGET_DIR | ||
echo "Upload is done" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,8 @@ [email protected]:/home/erik | |
echo "The target directory is set to: $TARGET_DIR" | ||
echo "The files index.html, favicon.ico and maintenance.tml will be copied to your target directory:" | ||
scp dist/index.html dist/favicon.ico dist/maintenance.html $TARGET_DIR | ||
echo "The folders css, img, js will be copied to your target directory:" | ||
scp -r dist/css dist/img dist/js $TARGET_DIR | ||
echo "The folders assets and img will be copied to your target directory:" | ||
scp -r dist/assets dist/img $TARGET_DIR | ||
echo "Copy the e-mail service app" | ||
scp dist/../nodejs/app.js $TARGET_DIR | ||
echo "Upload is done" |