diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2016-07-28 02:18:49 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2016-07-28 02:18:49 -0400 |
| commit | 6da5bfd8aedb3f02dd43d2648b6228256735bce2 (patch) | |
| tree | 6bfdfe38827f04e86288469f6159e1c33b9a9397 | |
| parent | aa1804a3b5a1a3514d2c0f0fe5973ab22a7507df (diff) | |
updated gitignore and add s3 website configs for docs and api
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | api-docs/s3_website.yml | 16 | ||||
| -rw-r--r-- | docs/s3_website.yml | 16 |
3 files changed, 33 insertions, 0 deletions
@@ -16,3 +16,4 @@ python/generator.exe xml site/* api-docs/build/* +.env diff --git a/api-docs/s3_website.yml b/api-docs/s3_website.yml new file mode 100644 index 00000000..a507fc8e --- /dev/null +++ b/api-docs/s3_website.yml @@ -0,0 +1,16 @@ +s3_id: <%= ENV['S3_ID'] %> +s3_secret: <%= ENV['S3_SECRET'] %> +s3_bucket: api.binary.ninja + +site: <%= File.dirname(__FILE__) + "/build/html" %> + +index_document: index.html +error_document: index.html + +gzip: + - .html + - .css + - .md + +s3_endpoint: us-east-1 +s3_reduced_redundancy: true diff --git a/docs/s3_website.yml b/docs/s3_website.yml new file mode 100644 index 00000000..1cc96d4c --- /dev/null +++ b/docs/s3_website.yml @@ -0,0 +1,16 @@ +s3_id: <%= ENV['S3_ID'] %> +s3_secret: <%= ENV['S3_SECRET'] %> +s3_bucket: docs.binary.ninja + +site: <%= File.dirname(__FILE__) + "./site" %> + +index_document: index.html +error_document: index.html + +gzip: + - .html + - .css + - .md + +s3_endpoint: us-east-1 +s3_reduced_redundancy: true |
