-
Notifications
You must be signed in to change notification settings - Fork 3
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
d7f9bf7
commit 0ba1bbf
Showing
5 changed files
with
34 additions
and
31 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
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 |
---|---|---|
|
@@ -12,18 +12,17 @@ | |
# 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}' | ||
SMTP_HOST='smtp.example-host.com' | ||
SMTP_PORT=25 | ||
SMTP_USER='smtp_example_username' | ||
SMTP_PASSWORD='smtp_example_password' | ||
DATABASE_URL='postgresql://formbase:[email protected]:5432/formbase' | ||
SMTP_HOST=127.0.0.1 | ||
SMTP_PORT=2500 | ||
SMTP_USER="formbase" | ||
SMTP_PASSWORD="formbase" | ||
NEXT_PUBLIC_APP_URL='http://localhost:3000' | ||
|
||
# The callback URL for githubs Oauth is localhost:3000/login/github/callback | ||
# Obviously replace localhost and port of you are using this in a production environment. | ||
|
||
GITHUB_CLIENT_ID='GITHUB_client_id' | ||
GITHUB_CLIENT_SECRET='GITHUB_client_secret' | ||
AUTH_GITHUB_ID="github_client_id" | ||
AUTH_GITHUB_SECRET="github_client_secret" | ||
|
||
# Formbase | ||
ALLOW_SIGNIN_SIGNUP=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
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