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

feat: farcaster auth #7

Merged
merged 16 commits into from
Feb 20, 2024
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ create-frog/templates
tsconfig.*.tsbuildinfo
tsconfig.tsbuildinfo
.vercel
.env
3 changes: 2 additions & 1 deletion playground/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import { app as todoApp } from './todos.js'

export const app = new Frog({
browserLocation: '/:path/dev',
verify: false,
secret: process.env.SECRET,
verify: true,
})

app.frame('/', (context) => {
Expand Down
3 changes: 2 additions & 1 deletion playground/src/todos.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ export const app = new Frog<State>({
index: -1,
todos: [],
},
verify: false,
secret: process.env.SECRET,
verify: true,
})

app.frame('/', ({ buttonValue, deriveState, inputText }) => {
Expand Down
130 changes: 95 additions & 35 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading