Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update template to use D1 #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .dev.vars.example
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Set the Plugin ID when your Plugin is submitted to the Marketplace.
PLUGIN_ID = ""

CLIENT_ID=XXXXX
CLIENT_SECRET=XXXX

# Set the Plugin ID when your Plugin is submitted to the Marketplace.
PLUGIN_ID = ""
REDIRECT_URI=https://localhost:8787/redirect

AUTHORIZE_ENDPOINT=https://accounts.google.com/o/oauth2/v2/auth
Expand Down
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ See our [Implementing OAuth guide](https://developers.framer.wiki/plugins/docs/o

## Setup

### Create a new project

```sh
npm create cloudflare@latest -- --template framer/plugin-oauth
```

### Environment variables

The following environment variables need to be added via the CloudFlare console or CLI.
Expand All @@ -28,6 +34,12 @@ To test locally, create a `.dev.vars` file with your own `CLIENT_ID` and `CLIENT
# Install the dependencies.
npm install

# Install mkcert (see https://github.com/FiloSottile/mkcert) and create dev certificates.
mkcert localhost

# Setup D1 database.
npm run bootstrap

# Run the worker locally.
npm run dev
```
Expand Down
Loading