Skip to content

Commit 5c8c250

Browse files
Merge pull request #89 from ekaone/main
docs: Fix typos and correction broken URL of Supabase documentation
2 parents 67c5645 + 7d8fcd1 commit 5c8c250

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/archive/launch_readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Adeus consists of 3 parts:
4343
an interface that lets the user to interact with their assistant and data via chat.
4444

4545
2. **Hardware device (Currently Coral AI, but soon a Rasberry-Pi Zero W worth $15):** this will be the wearable that will record everything, and send it to the backend to be processed
46-
3. **Supabase :** Our backend, and datavase, where we will process and store data, and interact with LLMs.
46+
3. **Supabase :** Our backend, and database, where we will process and store data, and interact with LLMs.
4747
Supabase is an open source Firebase alternative, a "backend-as-a-service" - which allows you to setup a Postgres database, Authentication, Edge Functions, Vector embeddings, and more - for free (at first) and at extreme ease!
4848
- [!!] But more importantly - **it is open source, and you can choose to deploy and manage your own Supabase instance** - which us crucial for our mission: A truly open-source, personal AI.
4949

docs/getting_started.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ We will use Supabase as our database (with vector search, pgvector), authenticat
5050

5151
7. If so, go to your terminal, and cd to the supabase folder: `cd ./supabase`
5252

53-
8. Install Supabase and set up the CLI. You should follow thier [guide here](https://supabase.com/../guides/cli/getting-started?platform=macos#installing-the-supabase-cli), but in short:
54-
- run `brew install supabase/tap/supabase` to install the CLI (or [check other options](https://supabase.com/../guides/cli/getting-started))
53+
8. Install Supabase and set up the CLI. You should follow thier [guide here](https://supabase.com/docs/guides/cli/getting-started?platform=macos#installing-the-supabase-cli), but in short:
54+
- run `brew install supabase/tap/supabase` to install the CLI (or [check other options](https://supabase.com/docs/guides/cli/getting-started))
5555
- Install [Docker Desktop](https://www.docker.com/products/docker-desktop/) on your computer (we won't use it, we just need docker daemon to run in the background for deploying supabase functions)
5656
9. Now when we have the CLI, we need to login with our Supabase account, running `supabase login` - this should pop up a browser window, which should prompt you through the auth
5757
10. And link our Supabase CLI to a specific project, our newly created one, by running `supabase link --project-ref <your-project-id>` (you can check what the project id is from the Supabase web UI, or by running `supabase projects list`, and it will be under "reference id") - you can skip (enter) the database password, it's not needed.
5858
11. Now we need to apply the Adeus DB schema on our newly created, and empty database. We can do this by simply run: `supabase db push`. We can verify it worked by going to the Supabase project -> Tables -> and see that new tables were created.
59-
12. Now let's deploy our functions! ([see guide for more details](https://supabase.com/../guides/functions/deploy)) `supabase functions deploy --no-verify-jwt` (see [issue re:security](https://github.com/adamcohenhillel/AdDeus/issues/3))
59+
12. Now let's deploy our functions! ([see guide for more details](https://supabase.com/docs/guides/functions/deploy)) `supabase functions deploy --no-verify-jwt` (see [issue re:security](https://github.com/adamcohenhillel/AdDeus/issues/3))
6060
13. If you're planning to first use OpenAI as your Foundation model provider, then you'd need to also run the following command, to make sure the functions have everything they need to run properly: `supabase secrets set OPENAI_API_KEY=<your-openai-api-key>` (Ollama setup guide is coming out soon)
6161
14. If you want access to tons of AI Models, both Open & Closed Source, set up your OpenRouter API Key. Go to [OpenRouter](https://openrouter.ai/) to get your API Key, then run `supabase secrets set OPENROUTER_API_KEY=<your-openrouter-api-key>`.
6262

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Adeus consists of 3 parts:
3939
an interface that lets the user to interact with their assistant and data via chat.
4040

4141
2. **Hardware device (Currently Coral AI, but soon a Rasberry-Pi Zero W worth $15):** this will be the wearable that will record everything, and send it to the backend to be processed
42-
3. **Supabase :** Our backend, and datavase, where we will process and store data, and interact with LLMs.
42+
3. **Supabase :** Our backend, and database, where we will process and store data, and interact with LLMs.
4343
Supabase is an open source Firebase alternative, a "backend-as-a-service" - which allows you to setup a Postgres database, Authentication, Edge Functions, Vector embeddings, and more - for free (at first) and at extreme ease!
4444
- [!!] But more importantly - **it is open source, and you can choose to deploy and manage your own Supabase instance** - which us crucial for our mission: A truly open-source, personal AI.
4545

0 commit comments

Comments
 (0)