This tutorial explains how to deploy automatically from bitbucket (or github) to AWS S3.
- Go to Create Application
- Select use bitbucket (or github)
- Choose your repo
- For the next questions, choose the default answers
| configuration AdminRestAp { | |
| Import-DscResource -ModuleName xPSDesiredStateConfiguration | |
| Import-DscResource -ModuleName xNetworking | |
| Node "webserver" { | |
| <# | |
| Install windows features | |
| #> | |
| WindowsFeature InstallIIS { |
| type | |
| TObjectHelper = class helper for TObject | |
| public | |
| class function &&op_LogicalOr<T: class>(A, B: T): T; static; | |
| end; | |
| class function TObjectHelper.&&op_LogicalOr<T>(A, B: T): T; | |
| begin | |
| if A <> nil then | |
| Result := A |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Custom Street View panorama tiles</title> | |
| <meta charset="utf-8"> | |
| <style> | |
| html, body, #map-canvas { | |
| height: 100%; | |
| margin: 0px; | |
| padding: 0px |
| . |
| BUILD_DIR := gen | |
| # pandoc is a handy tool for converting between numerous text formats: | |
| # http://johnmacfarlane.net/pandoc/installing.html | |
| PANDOC := pandoc | |
| # pandoc options | |
| # Liberation fonts: http://en.wikipedia.org/wiki/Liberation_fonts | |
| PANDOC_PDF_OPTS := --toc --chapters --base-header-level=1 --number-sections --template=virsto_doc.tex --variable mainfont="Liberation Serif" --variable sansfont="Liberation Sans" --variable monofont="Liberation Mono" --variable fontsize=12pt --variable documentclass=book | |
| PANDOC_EBOOK_OPTS := --toc --epub-stylesheet=epub.css --epub-cover-image=cover.jpg --base-header-level=1 |