diff --git a/.travis.yml b/.travis.yml
index ca777b12..328f0908 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -25,3 +25,19 @@ script:
notifications:
campfire:
secure: "JJezWGD9KJY/LC2aznI3Zyohy31VTIhcTKX7RWR4C/C8YKbW9kZv3xV6Vn11\nSHxJTeZo6st2Bpv6tjlWZ+HCR09kyCNavIChedla3+oHOiuL0D4gSo+gkTNW\nUKYZz9mcQUd9RoQpTeyxvdvX+l7z62/7JwFA7txHOqxbTS8jrjc="
+
+before_deploy:
+ - DISABLE_FINGERPRINTS=true ember build --env production
+ # delete some of the stuff that's useless for maintenance page
+ - rm -fr dist/assets/*.js dist/images/emoji dist/index.html dist/images/sponsors
+ - cp dist/maintenance.html dist/index.html
+
+deploy:
+ provider: s3
+ access_key_id: $MAINTENANCE_S3_ACCESS_KEY_ID
+ secret_access_key: $MAINTENANCE_S3_SECRET_ACCESS_KEY
+ bucket: travis-error-pages
+ skip_cleanup: true
+ acl: public_read
+ local_dir: dist
+ region: us-east-1
diff --git a/Brocfile.js b/Brocfile.js
index 7aeb4dc2..328cc541 100644
--- a/Brocfile.js
+++ b/Brocfile.js
@@ -2,16 +2,22 @@
var EmberApp = require('ember-cli/lib/broccoli/ember-app');
-var fingerprint = {
- extensions: ['js', 'css', 'png', 'jpg', 'gif', 'map', 'svg']
- },
+var fingerprint,
assetsHost;
-if (assetsHost = process.env.ASSETS_HOST) {
- if (assetsHost.substr(-1) !== '/') {
- assetsHost = assetsHost + '/'
+if (process.env.DISABLE_FINGERPRINTS) {
+ fingerprint = false;
+} else {
+ fingerprint = {
+ extensions: ['js', 'css', 'png', 'jpg', 'gif', 'map', 'svg']
+ };
+
+ if (assetsHost = process.env.ASSETS_HOST) {
+ if (assetsHost.substr(-1) !== '/') {
+ assetsHost = assetsHost + '/'
+ }
+ fingerprint.prepend = assetsHost
}
- fingerprint.prepend = assetsHost
}
var app = new EmberApp({
diff --git a/public/maintenance.html b/public/maintenance.html
index b449ebfe..2b3b6d28 100644
--- a/public/maintenance.html
+++ b/public/maintenance.html
@@ -7,7 +7,7 @@
-
+