I work in a small environment that consists of me (the developer) and my colleague (the designer).
We have a good intersection of skills so mostly we work pretty well together, currently we host all javascript files, css files and images in an s3 bucket so he can adjust our front end stuff without me having to deploy the changes to the server.
The only part of our workflow that lets us down is whenever he needs to adjust any of the HTML design. For that part he's dependent on me to deploy those changes to the production server.
We use ASP MVC and Razor templates.
Has anyone successfully worked out if its possible to host our cshtml razor templates in an s3 bucket rather than on our production server?
EDIT: We wouldn't want to host all of our view templates on s3, just a few that change regularly.