-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7d932fb
commit 55f52df
Showing
98 changed files
with
754 additions
and
579 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,26 +1,35 @@ | ||
# Since the ".env" file is gitignored, you can use the ".env.example" file to | ||
# build a new ".env" file when you clone the repo. Keep this file up-to-date | ||
# when you add new variables to `.env`. | ||
|
||
# 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. | ||
|
||
# When adding additional environment variables, the schema in "/src/env.js" | ||
# should be updated accordingly. | ||
|
||
# Drizzle | ||
# Get the Database URL from the "prisma" dropdown selector in PlanetScale. | ||
# Change the query params at the end of the URL to "?ssl={"rejectUnauthorized":true}" | ||
DATABASE_URL='mysql://YOUR_MYSQL_URL_HERE?ssl={"rejectUnauthorized":true}' | ||
# Database | ||
DATABASE_URL='postgresql://postgres:postgres@postgres:5432/flowify-development' | ||
|
||
# Next Auth | ||
# You can generate a new secret on the command line with: | ||
# openssl rand -base64 32 | ||
# https://next-auth.js.org/configuration/options#secret | ||
# NEXTAUTH_SECRET="" | ||
NEXTAUTH_SECRET="" | ||
NEXTAUTH_URL="http://localhost:3000" | ||
|
||
# Next Auth Discord Provider | ||
# Next Auth Spotify Provider | ||
SPOTIFY_CLIENT_ID="" | ||
SPOTIFY_CLIENT_SECRET="" | ||
|
||
# Redis | ||
REDIS_URL="redis://redis:6379" | ||
|
||
|
||
# Development | ||
|
||
# Skips environment validation in ~/src/env.js Used for builds | ||
#SKIP_ENV_VALIDATION=true | ||
|
||
# Disables workflow instrumentation | ||
#NO_WORKER=true | ||
|
||
#CONFIGS | ||
|
||
# Sentry | ||
#SENTRY=true | ||
|
||
# MILLION | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,66 @@ | ||
{ | ||
"$schema": "https://biomejs.dev/schemas/1.6.1/schema.json", | ||
"vcs": { "clientKind": "git", "enabled": true }, | ||
"files": { | ||
"ignore": [ | ||
"next.config.js", | ||
"node_modules/**/*", | ||
"dist/**/*", | ||
".next/**/*", | ||
"*.json" | ||
] | ||
}, | ||
"formatter": { | ||
"enabled": true, | ||
"formatWithErrors": false, | ||
"indentStyle": "space", | ||
"indentWidth": 2, | ||
"lineEnding": "lf", | ||
"lineWidth": 80, | ||
"attributePosition": "auto" | ||
}, | ||
"organizeImports": { "enabled": true }, | ||
"linter": { | ||
"enabled": true, | ||
"rules": { | ||
"all": true, | ||
"a11y": { "noSvgWithoutTitle": "off" }, | ||
"complexity": { | ||
"noForEach": "off", | ||
"noBannedTypes": "warn", | ||
"noStaticOnlyClass": "off" | ||
}, | ||
"nursery": { | ||
"noNodejsModules": "off", | ||
"noUndeclaredDependencies": "off", | ||
"useImportRestrictions": "off", | ||
"useSortedClasses": "off" | ||
}, | ||
"style": { "all": false }, | ||
"suspicious": { | ||
"noExplicitAny": "off", | ||
"noShadowRestrictedNames": "off", | ||
"noPrototypeBuiltins": "off", | ||
"noImplicitAnyLet": "off", | ||
"noArrayIndexKey": "warn", | ||
"noAssignInExpressions": "off" | ||
}, "correctness": { | ||
"noUndeclaredVariables": "off" | ||
} | ||
} | ||
}, | ||
"javascript": { | ||
"formatter": { | ||
"jsxQuoteStyle": "double", | ||
"quoteProperties": "asNeeded", | ||
"trailingComma": "all", | ||
"semicolons": "always", | ||
"arrowParentheses": "always", | ||
"bracketSpacing": true, | ||
"bracketSameLine": false, | ||
"quoteStyle": "double", | ||
"attributePosition": "auto" | ||
} | ||
}, | ||
"json": { "parser": { "allowComments": true } } | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.