metaserver to control maps nodes
```bash curl -vv -H 'x-om-appversion: 2022.08.01-1-Web' http://localhost:59830/releases ``` ```json { "published_at": "2024-02-06T15:08:00Z", "code": 24020611, "news": { "en-US": "<TEXT>" }, "apk": { "name": "OrganicMaps-24020611-web-release.apk", "size": 62334329, "url": "https://github.com/organicmaps/organicmaps/releases/download/2024.02.06-11-android/OrganicMaps-24020611-web-release.apk" } } ``` Signed-off-by: Roman Tsisyk <roman@tsisyk.com> |
||
---|---|---|
.github/workflows | ||
src | ||
test | ||
.eslintrc.yml | ||
.gitignore | ||
.nvmrc | ||
.prettierrc | ||
jest.config.json | ||
LICENSE | ||
metadata.json | ||
package-lock.json | ||
package.json | ||
README.md | ||
tsconfig.json | ||
wrangler.toml |
Metaserver to monitor map nodes and serve them to clients
Requirements
Install CloudFlare's wrangler and other dev dependencies using npm:
npm i
Development
Use npx wrangler dev --local
for localhost development.
Use npx wrangler dev
to test local changes using Cloudflare dev tools.
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.