-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* use TAMAGUI_TARGET=web * add cloudflare turnstile
- Loading branch information
Showing
10 changed files
with
117 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
# 🧑💻 DEVELOPMENT SETTING. Copy this file to .env.local and change the values as needed. | ||
NEXT_PUBLIC_SUPABASE_PROJECT_ID=default | ||
NEXT_PUBLIC_URL=http://localhost:3000 | ||
NEXT_PUBLIC_SUPABASE_URL=http://localhost:54321 | ||
NEXT_PUBLIC_SUPABASE_GRAPHQL_URL=http://localhost:54321/graphql/v1 | ||
NEXT_PUBLIC_SUPABASE_ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZS1kZW1vIiwicm9sZSI6ImFub24iLCJleHAiOjE5ODM4MTI5OTZ9.CRXP1A7WOeoJeXxjNni43kdQwgnWNReilDMblYTn_I0 | ||
NEXT_PUBLIC_MAINNET_RPC_URL=http://localhost:8545 | ||
NEXT_PUBLIC_BASE_CHAIN_ID=845337 | ||
NEXT_PUBLIC_BASE_RPC_URL=http://localhost:8546 | ||
NEXT_PUBLIC_BUNDLER_RPC_URL=http://localhost:3030/rpc | ||
SUPABASE_DB_URL=postgresql://postgres:postgres@localhost:54322/postgres | ||
SUPABASE_SERVICE_ROLE=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZS1kZW1vIiwicm9sZSI6InNlcnZpY2Vfcm9sZSIsImV4cCI6MTk4MzgxMjk5Nn0.EGIM96RAZx35lJzdJsyH-qQwv8Hdp7fsn3W0YpN81IU | ||
SUPABASE_JWT_SECRET=super-secret-jwt-token-with-at-least-32-characters-long | ||
NEXT_PUBLIC_MAINNET_CHAIN_ID=1337 | ||
NEXT_PUBLIC_BASE_CHAIN_ID=845337 | ||
NEXT_PUBLIC_MAINNET_RPC_URL=http://localhost:8545 | ||
NEXT_PUBLIC_SUPABASE_ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZS1kZW1vIiwicm9sZSI6ImFub24iLCJleHAiOjE5ODM4MTI5OTZ9.CRXP1A7WOeoJeXxjNni43kdQwgnWNReilDMblYTn_I0 | ||
NEXT_PUBLIC_SUPABASE_GRAPHQL_URL=http://localhost:54321/graphql/v1 | ||
NEXT_PUBLIC_SUPABASE_PROJECT_ID=default | ||
NEXT_PUBLIC_SUPABASE_URL=http://localhost:54321 | ||
NEXT_PUBLIC_TURNSTILE_SITE_KEY=1x00000000000000000000AA | ||
NEXT_PUBLIC_URL=http://localhost:3000 | ||
NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID=33fe0df7cd4f445f4e2ba7e0fd6ed314 | ||
SNAPLET_HASH_KEY=sendapp | ||
SEND_ACCOUNT_FACTORY_PRIVATE_KEY=0x59c6995e998f97a5a0044966f0945389dc9e86dae88c7a8412f4603b6b78690d | ||
SECRET_SHOP_PRIVATE_KEY=0x5de4111afa1a4b94908f83103eb1f1706367c2e68ca870fc3fb9a804cdab365a | ||
SEND_ACCOUNT_FACTORY_PRIVATE_KEY=0x59c6995e998f97a5a0044966f0945389dc9e86dae88c7a8412f4603b6b78690d | ||
SNAPLET_HASH_KEY=sendapp | ||
SUPABASE_DB_URL=postgresql://postgres:postgres@localhost:54322/postgres | ||
SUPABASE_JWT_SECRET=super-secret-jwt-token-with-at-least-32-characters-long | ||
SUPABASE_SERVICE_ROLE=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZS1kZW1vIiwicm9sZSI6InNlcnZpY2Vfcm9sZSIsImV4cCI6MTk4MzgxMjk5Nn0.EGIM96RAZx35lJzdJsyH-qQwv8Hdp7fsn3W0YpN81IU | ||
# NEXT_PUBLIC_ENABLE_QUERY_DEV_TOOLS=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,10 @@ | ||
import { YStack, Anchor, Paragraph, XStack } from '@my/ui' | ||
import { YStack } from '@my/ui' | ||
import { SignUpForm } from 'app/features/auth/sign-up/sign-up-form' | ||
import { useLink } from 'solito/link' | ||
|
||
export const SignUpScreen = () => { | ||
return ( | ||
<YStack h="100%" jc="center" ai="center" f={1}> | ||
<SignUpForm /> | ||
<XStack jc="center" ai="center" mt="$4"> | ||
<Paragraph size="$2" color="$color11"> | ||
Already have an account?{' '} | ||
<Anchor color="$color12" {...useLink({ href: '/auth/sign-in' })}> | ||
Sign in | ||
</Anchor> | ||
</Paragraph> | ||
</XStack> | ||
</YStack> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters