From d7acc857efef50906ab5faf6a2c83424760fdf9c Mon Sep 17 00:00:00 2001 From: David Date: Mon, 20 Sep 2021 15:31:55 -0400 Subject: [PATCH 1/3] public/.gitkeep: delete --- public/.gitkeep | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 public/.gitkeep diff --git a/public/.gitkeep b/public/.gitkeep deleted file mode 100644 index e69de29..0000000 From 702c72650a7b55f2ac696660b34b50d0110de343 Mon Sep 17 00:00:00 2001 From: David Date: Mon, 20 Sep 2021 15:43:55 -0400 Subject: [PATCH 2/3] package.json BUGFIX: do full `s3 rm` before `s3 sync` -- see [s3 sync \-\-exact\-timestamps flag ignored for uploads \#4460](https://github.com/aws/aws-cli/issues/4460) --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index daa01ec..127962a 100644 --- a/package.json +++ b/package.json @@ -16,9 +16,9 @@ "deploy:stage": "yarn run build:stage; yarn run sync:stage; yarn cache:invalidate:stage; sleep 30; yarn test:browser:stage", "deploy:prod": "yarn run build:prod; yarn run sync:prod; yarn cache:invalidate:prod; sleep 30; yarn test:browser:prod", "lint": "vue-cli-service lint", - "sync:dev": "aws s3 sync dist/ s3://dlts-enm-dev/search --exact-timestamps --exclude '.gitkeep'", - "sync:stage": "aws s3 sync dist/ s3://dlts-enm-stage/search --exact-timestamps --exclude '.gitkeep'", - "sync:prod": "aws s3 sync dist/ s3://dlts-enm/search --exact-timestamps --exclude '.gitkeep'", + "sync:dev": "aws s3 rm s3://dlts-enm-dev/search --recursive && aws s3 sync dist/ s3://dlts-enm-dev/search", + "sync:stage": "aws s3 rm s3://dlts-enm-stage/search --recursive && aws s3 sync dist/ s3://dlts-enm-stage/search", + "sync:prod": "aws s3 rm s3://dlts-enm/search --recursive && aws s3 sync dist/ s3://dlts-enm/search", "test": "yarn run lint && yarn run test:unit && yarn run test:browser:local", "test:browser:local": "node_modules/.bin/wdio tests/browser/conf/wdio.local.conf.js", "test:browser:local:chrome": "node_modules/.bin/wdio tests/browser/conf/wdio.local.chrome.conf.js", From 3804f90e1593719e752007b278c1e128b00e6a3e Mon Sep 17 00:00:00 2001 From: David Date: Wed, 12 Oct 2022 08:41:28 -0400 Subject: [PATCH 3/3] README.md: update links to ENM search and ENM website --- README.md | 4 ++-- enm-search-application.iml | 9 +++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 enm-search-application.iml diff --git a/README.md b/README.md index 878d1a2..487cf79 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # DLTS Enhanced Networked Monographs: Search -[Topics and full-text search](http://dlib.nyu.edu/enm/search/) -for the DLTS [Enhanced Networked Monographs website](http://dlib.nyu.edu/enm/). +[Topics and full-text search](https://enm.dlib.nyu.edu/search/) +for the DLTS [Enhanced Networked Monographs website](https://enm.dlib.nyu.edu/). ## Overview diff --git a/enm-search-application.iml b/enm-search-application.iml new file mode 100644 index 0000000..51f25e0 --- /dev/null +++ b/enm-search-application.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file