-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Type error fix. * Copy prisma file to build dir so I can run `prisma generate` * Add data dir to support attached volumes in Docker * Bug fix for "blinking" between quizzes * Style and dep updates * Bug fix in how cards are dealt from deck for continuous flow mode.
- Loading branch information
1 parent
0ae4630
commit b3be3bd
Showing
20 changed files
with
1,777 additions
and
2,106 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 |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
"rules": { | ||
"react/no-unescaped-entities": 0 | ||
} | ||
} | ||
} |
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,3 +1,15 @@ | ||
EMAIL_FROM=[email protected] | ||
EMAIL_SERVER_HOST="foo.bar.xyz" | ||
EMAIL_SERVER_PASSWORD="password123" | ||
EMAIL_SERVER_PORT="465" | ||
EMAIL_SERVER_USER="[email protected]" | ||
# Run `openssl rand -base64 32` to get a secure secret. | ||
NEXTAUTH_SECRET=123456 | ||
NEXTAUTH_URL=https://A_REAL_DOMAIN_NAME | ||
# Optional. Defaults to "." if left unset. | ||
# You will need this on Docker/cloud native apps where | ||
# you are required to attach storage volumes. | ||
DATA_DIR=/data | ||
# OpenAI API Key. You will need to sign up for an account and enter | ||
# payment details. | ||
OPENAI_API_KEY="Find this at https://platform.openai.com/account/api-keys" | ||
|
@@ -19,4 +31,4 @@ GCP_JSON_CREDS='{"foo": "bar"}' | |
# Running this app is expensive. Set this ENV if | ||
# (and only if!) you want to stop new users from using the | ||
# app. This is a good way to keep costs down. | ||
AUTHORIZED_EMAILS=[email protected] | ||
AUTHORIZED_EMAILS=[email protected] |
Oops, something went wrong.