Browse Source
Merge pull request #462 from Saibamen/development_server
`start-server-dev` command. Fixes #460
pull/464/head
Louis Lam
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
3 additions and
0 deletions
-
package.json
-
server/routers/api-router.js
|
|
@ -18,6 +18,7 @@ |
|
|
|
"dev": "vite --host", |
|
|
|
"start": "npm run start-server", |
|
|
|
"start-server": "node server/server.js", |
|
|
|
"start-server-dev": "cross-env NODE_ENV=development node server/server.js", |
|
|
|
"build": "vite build", |
|
|
|
"tsc": "tsc", |
|
|
|
"vite-preview-dist": "vite preview --host", |
|
|
@ -94,6 +95,7 @@ |
|
|
|
"@vitejs/plugin-vue": "^1.6.2", |
|
|
|
"@vue/compiler-sfc": "^3.2.11", |
|
|
|
"core-js": "^3.17.3", |
|
|
|
"cross-env": "^7.0.3", |
|
|
|
"dns2": "^2.0.1", |
|
|
|
"eslint": "^7.32.0", |
|
|
|
"eslint-plugin-vue": "^7.17.0", |
|
|
|
|
|
@ -83,6 +83,7 @@ router.get("/api/status-page/monitor-list", cache("5 minutes"), async (_request, |
|
|
|
// Can fetch only if published
|
|
|
|
router.get("/api/status-page/heartbeat", cache("5 minutes"), async (_request, response) => { |
|
|
|
allowDevAllOrigin(response); |
|
|
|
|
|
|
|
try { |
|
|
|
await checkPublished(); |
|
|
|
|
|
|
|