-
-
Notifications
You must be signed in to change notification settings - Fork 223
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
Showing
659 changed files
with
11,450 additions
and
4,853 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 |
---|---|---|
|
@@ -76,9 +76,12 @@ CLERK_SECRET_KEY="" | |
# Clerk Dashboard > [app] > Organizations Settings | ||
NEXT_PUBLIC_ORGANIZATIONS_ENABLED="false" | ||
|
||
# || NOTE: NEXT_PUBLIC_AUTH_PROVIDER was removed in Relivator 1.2.6 | ||
# || To switch the provider from Neon, modify `reliverse.config.ts` | ||
# || Automatic switcher coming in Relivator 1.3.x version. | ||
# || NOTE: NEXT_PUBLIC_AUTH_PROVIDER was removed in Relivator 1.2.6. | ||
# || To switch the provider from Neon, modify `reliverse.config.ts`. | ||
# || Automatic switcher coming in the release of Relivator v1.3.0 GA. | ||
|
||
# || Auth.js Guide: https://nextjs.org/learn/dashboard-app/adding-authentication | ||
# || Clerk Guide: https://clerk.com/docs/quickstarts/nextjs | ||
|
||
# ==================================================== | ||
# PAYMENT SYSTEM | ||
|
@@ -105,11 +108,11 @@ STRIPE_ENTERPRISE_SUBSCRIPTION_PRICE_ID="" | |
# || Currently, "next dev --turbo" does not read the .env file after launch. | ||
# || So, you need to close the application using Cmd/Ctrl+C and run it again. | ||
|
||
# Set to true if you want to enable addons/reliverse/relimter/python/index.ts | ||
# Note: addons/reliverse/relimter/python/index.ts is a more stable version. | ||
# Set to true if you want to enable addons/scripts/reliverse/relimter/python/index.ts | ||
# Note: addons/scripts/reliverse/relimter/python/index.ts is a more stable version. | ||
PYTHON_INSTALLED="false" | ||
|
||
# Set to true if you want to enable addons/reliverse/toolbar/index.ts toolbar | ||
# Set to true if you want to enable addons/scripts/reliverse/toolbar/index.ts toolbar | ||
# https://vercel.com/docs/workflow-collaboration/vercel-toolbar | ||
ENABLE_VERCEL_TOOLBAR="false" | ||
ENABLE_VT_ON_PRODUCTION="false" | ||
|
@@ -150,6 +153,11 @@ NEXT_PUBLIC_RESEND_API_KEY="" | |
# Set email: https://resend.com/domains or use Resend's test email | ||
NEXT_PUBLIC_RESEND_EMAIL_FROM="[email protected]" | ||
|
||
# https://novu.co | ||
NOVU_SECRET_KEY="" | ||
# https://your-live-domain.com/api/novu | ||
NOVU_BRIDGE_URL="" | ||
|
||
# ==================================================== | ||
# ADDITIONAL | ||
# ==================================================== | ||
|
@@ -164,6 +172,9 @@ LOGLIB_ID="" | |
# Open your server settings > Integrations > New Webhook > obtain the URL. | ||
DISCORD_WEBHOOK_URL="" | ||
|
||
# Do not enable it, it's used exclusively by https://relivator.bleverse.com | ||
DEMO_NOTES_ENABLED="false" | ||
|
||
# ==================================================== | ||
# STRIPE INSTRUCTIONS | ||
# ==================================================== | ||
|
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
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Novu Sync | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# https://github.com/novuhq/actions-novu-sync | ||
- name: Sync State to Novu | ||
uses: novuhq/actions-novu-sync@v2 | ||
with: | ||
# The secret key used to authenticate with Novu Cloud | ||
# To get the secret key, go to https://web.novu.co/api-keys. | ||
# Required. | ||
secret-key: ${{ secrets.NOVU_SECRET_KEY }} | ||
|
||
# The publicly available endpoint hosting the bridge application | ||
# where notification entities (eg. workflows, topics) are defined. | ||
# Required. | ||
bridge-url: ${{ secrets.NOVU_BRIDGE_URL }} | ||
|
||
# The Novu Cloud API URL to sync with. | ||
# Optional. | ||
# Defaults to https://api.novu.co | ||
api-url: https://api.novu.co |
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.