visual studio 2013 - Automatically upload local changes into windows azure / amazon s3 cloud server -


i have create visual studio project following functionality,

  1. once project created, service should automatically upload project files in cloud storage (using windows azure or amazon s3 server).

  2. if changes in project files, instead of uploading whole project, modified files has uploaded. ( svn commit).

could please let me know if have ideas on this?

what describe more-or-less "git deployment" - deploying changes web site or application pushing changes local git repository remote one. deployment triggers service or script on remote repository updates site.

azure supports azure web sites. see example continuous deployment using git in azure app service step-by-step guid on how create new site, deploy , update using git.

the engine automates git deployments in azure available open source project, project kudu can hosted outside azure, eg on own web server.

amazon doesn't offer all of out of box. elastic beanstalk offering allows publish asp.net mvc project specific configuration (vms, settings etc) right visual studio it's manual process , doesn't deploy changes. check how deploy application using elastic beanstalk step-by-step guide.

you can use project kudu on amazon vm use git deployment. won't set vms beanstalk does, deploy changes site.


Popular posts from this blog

c# - ODP.NET Oracle.ManagedDataAccess causes ORA-12537 network session end of file -

matlab - Compression and Decompression of ECG Signal using HUFFMAN ALGORITHM -

utf 8 - split utf-8 string into bytes in python -