Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
john093e committed Aug 3, 2024
1 parent 50d0bdc commit 5394deb
Show file tree
Hide file tree
Showing 106 changed files with 6,064 additions and 15,499 deletions.
18 changes: 2 additions & 16 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,5 @@

# This file will be committed to version control, so make sure not to have any secrets in it.
# If you are cloning this repo, create a copy of this file named `.env` and populate it with your secrets.

# The database URL is used to connect to your Supabase database.
POSTGRES_URL="postgres://postgres.[USERNAME]:[PASSWORD]@aws-0-eu-central-1.pooler.supabase.com:6543/postgres?workaround=supabase-pooler.vercel"


# You can generate the secret via 'openssl rand -base64 32' on Unix
# @see https://next-auth.js.org/configuration/options#secret
AUTH_SECRET='supersecret'

# Preconfigured Discord OAuth provider, works out-of-the-box
# @see https://next-auth.js.org/providers/discord
AUTH_DISCORD_ID=''
AUTH_DISCORD_SECRET=''

# In case you're using the Auth Proxy (apps/auth-proxy)
# AUTH_REDIRECT_PROXY_URL='https://auth.your-server.com/r'
# Zoid
ZOID_FRAME_ONLY=false
68 changes: 56 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,16 +1,32 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# Dependencies
node_modules
**/node_modules
.pnp
.pnp.js
.yarn/install-state.gz# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
# GitHub
**.git

# Dependencies
node_modules
**/node_modules
.pnp
.pnp.js
.yarn/install-state.gz

# testing
coverage
# Testing
/coverage

# next.js
.next/
# Next.js
.next
**.next
out
out/
/.next/
/out/
.next/
next-env.d.ts

# nitro
Expand All @@ -24,29 +40,57 @@ apps/expo/.gitignore
apps/expo/ios
apps/expo/android

# production
# Production
build
dist
dist/

# misc
# Misc
*.DS_Store
**.DS_Store
.DS_Store
*.pem
tsconfig.tsbuildinfo

# debug
# Debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# local env files
# Local ENV files
*.env
**.env
*/*.env
**/*.env
*/.env
**/.env
.env
.env*.local
*/*.env.development
**/*.env.development
*/.env.development
**/.env.development
*.env.development
.env.development
.env.local
.env.development.local
.env.test.local
.env.production.local

# vercel
# Vercel
*.vercel
**.vercel
.vercel

# typescript
*.tsbuildinfo
dist/
*.tsbuildinfo

# turbo
.turbo

# Rollup
.rollup.cache
/.rollup.cache/
.rollup.cache/
.cache
Loading

0 comments on commit 5394deb

Please sign in to comment.