From 9288ff05a347e21f9af848bc4dbb5043e3a609c7 Mon Sep 17 00:00:00 2001 From: SRINJAYDASGUPTA-Git Date: Sat, 16 Mar 2024 18:39:30 +0530 Subject: [PATCH] docs: Remove supabase from docs #164 - Removed Supabase Credential pre-requisite - Removed Supabase Client API key and Anon Key from environment-variables - Removed Supabase as Tech stack from api --- docs/contributing-to-keyshade/design-of-our-code/api.md | 1 - docs/contributing-to-keyshade/environment-variables.md | 2 -- docs/contributing-to-keyshade/prerequisites.md | 1 - 3 files changed, 4 deletions(-) diff --git a/docs/contributing-to-keyshade/design-of-our-code/api.md b/docs/contributing-to-keyshade/design-of-our-code/api.md index 308f7a02..9bc90890 100644 --- a/docs/contributing-to-keyshade/design-of-our-code/api.md +++ b/docs/contributing-to-keyshade/design-of-our-code/api.md @@ -12,7 +12,6 @@ Our API is developed using the following stack: * **NestJS** as the base * **Prisma** as the DDL and DML -* **Supabase** as the database and bucket storage * **Node Mailer** as the mail agent ## Structure diff --git a/docs/contributing-to-keyshade/environment-variables.md b/docs/contributing-to-keyshade/environment-variables.md index 1321fd18..2215b29c 100644 --- a/docs/contributing-to-keyshade/environment-variables.md +++ b/docs/contributing-to-keyshade/environment-variables.md @@ -9,8 +9,6 @@ description: Get to know the environment you are working with Here's the description of the environment variables used in the project. You can find the values for these variables in \`.env.example\`. * **DATABASE\_URL**: The URL of the PSQL database to connect to. This is used by the [Prisma Client](https://www.prisma.io/docs/orm/prisma-client) to connect to the database. -* **SUPABASE\_API\_URL**: The URL of the Supabase API. This is used by the [Supabase Client](https://supabase.io/docs/reference/javascript/supabase-client) to connect to the Supabase API. Make sure you create a Supabase project and get the API URL from the project settings. -* **SUPABASE\_ANON\_KEY**: The anonymous key of the Supabase project. This is used by the Supabase Client to connect to the Supabase API. Make sure you create a Supabase project and get the anonymous key from the project settings. * **SMTP\_HOST**: This is used to send out emails from the backend. * **SMTP\_PORT:** The SMTP port as specified by your SMTP provider. * **SMTP\_EMAIL\_ADDRESS:** The email address you want to be sending out the emails from. diff --git a/docs/contributing-to-keyshade/prerequisites.md b/docs/contributing-to-keyshade/prerequisites.md index 9c61eeff..ff7ee500 100644 --- a/docs/contributing-to-keyshade/prerequisites.md +++ b/docs/contributing-to-keyshade/prerequisites.md @@ -3,5 +3,4 @@ Of course, to get started, you will need to have the required components in place. Gladly, there isn't much that needs to be done: * Make sure you have Git installed and have an account in GitHub -* Have an account in Supabase along with a project * Have your SMTP credentials ready