update documentation for going to production
This commit is contained in:
23
README.md
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/",`
|
If you are deploying in a subdirectory, add it to `publicPath` in vue.config.js, eg: `publicPath: "/app/time-tracker/",`
|
||||||
|
|
||||||
```
|
* `npx prettier --write ./sw_scripts/`
|
||||||
npm run build
|
|
||||||
```
|
|
||||||
|
|
||||||
```
|
...to make sure the service worker scripts are in proper form
|
||||||
npx prettier --write ./sw_scripts/
|
|
||||||
```
|
|
||||||
to make sure the service worker scripts are in proper form
|
|
||||||
|
|
||||||
... then copy the contents of the `sw_scripts` folder to the `dist` folder - except additional_scripts.js.
|
* 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.
|
||||||
|
|
||||||
|
* `rsync -azvu -e "ssh -i ~/.ssh/..." dist ubuntu@endorser.ch:time-safari`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -520,7 +520,11 @@ async function getNotificationCount() {
|
|||||||
const most_recent_notified = claims[0]["id"];
|
const most_recent_notified = claims[0]["id"];
|
||||||
await setMostRecentNotified(most_recent_notified);
|
await setMostRecentNotified(most_recent_notified);
|
||||||
} else {
|
} 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;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user