Browse Source

update documentation for going to production

design-tweaks-2023-12
Trent Larson 10 months ago
parent
commit
f2fb432d2e
  1. 23
      README.md
  2. 6
      sw_scripts/safari-notifications.js

23
README.md

@ -22,16 +22,23 @@ npm run lint
If you are deploying in a subdirectory, add it to `publicPath` in vue.config.js, eg: `publicPath: "/app/time-tracker/",`
```
npm run build
```
* `npx prettier --write ./sw_scripts/`
```
npx prettier --write ./sw_scripts/
```
to make sure the service worker scripts are in proper form
...to make sure the service worker scripts are in proper form
* Update the CHANGELOG.md & the version in package.json, run `npm install`, and commit. Tag wth the new version: `git tag 0.1.0`
* If production, change src/constants/app.ts DEFAULT_*_SERVER to be PROD.
* `npm run build`
* Revert src/constants/app.ts & change version to "-beta"
* `cp sw_scripts/[ns]* dist/`
... to copy the contents of the `sw_scripts` folder to the `dist` folder - except additional_scripts.js.
... then copy the contents of the `sw_scripts` folder to the `dist` folder - except additional_scripts.js.
* `rsync -azvu -e "ssh -i ~/.ssh/..." dist ubuntu@endorser.ch:time-safari`

6
sw_scripts/safari-notifications.js

@ -520,7 +520,11 @@ async function getNotificationCount() {
const most_recent_notified = claims[0]["id"];
await setMostRecentNotified(most_recent_notified);
} else {
console.error("The service worker got a bad response status when fetching claims:", response.status, response);
console.error(
"The service worker got a bad response status when fetching claims:",
response.status,
response,
);
}
break;
}

Loading…
Cancel
Save