Deploy Application Template

I use scriptcase.host as my server, my scriptcase and application in the same server.

In advanced option,
I try to use a template to deploy applications, but the system told me connection have problems, It is everything ok if I use a standard function to deploy step by step.

How do you guys how to deploy the applications? step by step or have some quick way.
Thank.

I think most ppl just push it up with FileZilla or something similar but I could be wrong.
I havent had to deploy yet, still building :slight_smile:

We find an RSYNC deploy script on a Linux build box works well

Good Luck! Bro. :smiley:

This is a good idea for Remote deploy. I will try it in the future. Could you write a instruction or open a post to share your expereince. Thanks. :smiley:

Hi Jonathonwang
Here is the basic form we are using. Really simple but it works well
Please let us know if you have special requirements or need clarification
Good luck
Mike

`#!/bin/bash

echo ‘Sync up to Health Data Live: Exclude _lib - Ctrl+c to stop’
read
rsync -avz
–exclude _lib/conf/prod.config.php
–exclude gallery2
–exclude main_menu_html
./ root@healthdatalab.com:/var/www/hdl/app/
echo ‘…Done’
`

Very appreciate your work. Thanks.