metaserver to control maps nodes
Find a file
Viktor Havaka 882b7a7cec
Enable donates for AppStore (250302).
Signed-off-by: Viktor Havaka <viktor.govako@gmail.com>
2025-03-05 17:42:47 -03:00
.github/workflows Specify GitHub Environment to allow access to CF secrets 2024-12-23 17:25:08 +00:00
src Enable donates for AppStore (250302). 2025-03-05 17:42:47 -03:00
test Add PlacePage donations 2024-12-13 14:52:26 +01:00
.gitignore Add PlacePage donations 2024-12-13 14:52:26 +01:00
.nvmrc Initial commit 2021-06-18 22:38:16 +02:00
.prettierrc npm run upgrade, fixed toml prettier error 2023-12-14 22:56:17 +02:00
CONTRIBUTORS Add actual CONTRIBUTORS file 2024-12-13 22:54:17 +01:00
jest.config.json Implement conditional donates 2022-09-11 20:10:23 +03:00
LICENSE Add actual CONTRIBUTORS file 2024-12-13 22:54:17 +01:00
metadata.json Initial commit 2021-06-18 22:38:16 +02:00
package-lock.json npm run upgrade 2024-12-13 14:57:57 +01:00
package.json npm run upgrade 2024-12-13 14:57:57 +01:00
README.md Add PlacePage donations 2024-12-13 14:52:26 +01:00
tsconfig.json Add PlacePage donations 2024-12-13 14:52:26 +01:00
wrangler.toml Upgrade to Wrangler 2 2022-11-23 07:48:08 +02:00

Metaserver to monitor map nodes and serve them to clients

Deploy master to Production

Requirements

Install CloudFlare's wrangler and other dev dependencies using npm:

npm i

Development

Use npx wrangler dev for localhost development and for testing using Cloudflare dev tools.

curl -H "X-OM-DataVersion: 241001" -H "X-OM-AppVersion: 2024.10.22-10-Google" -H 'Accept-Language: fr-FR' http://localhost:8787/maps

Update node dependencies to their major versions

npm run upgrade

Preview on workers.dev

Use npx wrangler publish to open and test deployed worker in browser at https://meta-dev.omaps.workers.dev

Monitor Worker logs

For dev: npx wrangler tail [--format json]

For production: npx wrangler tail --env prod [--format json] or npm run logs

Deployment

All pushes to master automatically deploy prod version to https://meta.omaps.workers.dev/ and https://meta.omaps.app/

Deploy to prod manually using npx wrangler publish --env prod or this action.

Deploy to test dev version live at https://meta-dev.omaps.workers.dev/ manually using npx wrangler publish.

Known issues

  • Cloudflare's free Flexible SSL certificates do not support 4-th level subdomains like a.b.example.com, so you can see strange SSL errors.
  • HTTPS fetch requests from Workers are converted to HTTP ones if the target host is in the same Cloudflare zone, see here for more details.