Serveless service - Cloudflare Worker
This worker was bootstrapped using worker brick and configured with wrangler CLI. You can install it via NPM: npm install -g wrangler
Run the local server via npm run start
Setup worker environment variables with the following one-line:
IFS='='; ENV_FILE=.dev.vars; cat $ENV_FILE | while read line || [[ -n $line ]]; do read -ra envy <<< $line; wrangler secret put ${envy[0]} <<< ${envy[1]}; done
Deploy to Cloudflare via npm run deploy
This template was prepared by:
- João Freitas, @freitzzz
- Rute Santos, @rutesantos4
Contact us if you need help on your project!