Using the Wrangler CLI
- Clone the forked repo to your local machine
git clone <repo>
- Navigate into the project
cd <repo>
- Install and run wrangler:
npx wranger -v
, Male sure you have node and npm installed! - To create the KV Bindings needed you can use the
npx wrangler kv namespace create <NAMESPACE>
, Info- This will return a namespace id which you can place in the wrangler.toml.
- Make sure the the namespace names you input are the same as listed in the wrangler.toml!
- To create Var Secrets you can use the
npx wrangler secret put <KEY>
, Info- This will prompt you to provide a value for the secret and it will become avaliable to your application
- Make sure the secret names you input are the same as listed in the wrangler.toml!
- Commit the changes of the wrangler.toml to your forked repository