You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Find the release with the green latest tag on it, the release might located in the later pages.
Download the correct package based on your processor type, and favorite package manager, for example I have dpkg package and an x86 architecture on my processor, so I downloaded supaase__linux_amd64.deb
Run one of the following commands based on the type of package downloaded:
sudo apk add --allow-untrusted <...>.apk
sudo dpkg -i <...>.deb
sudo rpm -i <...>.rpm
Add to documentation how to stop docker containers if you shut off the computer with forgeting to do supabase down
Add how to get the types for supabase tables to put into types_db.ts:
npx supabase gen types typescript --project-id "$PROJECT_REF" --schema public
npx supabase gen types typescript --local --schema public > ./nextjs/types_db.ts
Add how to add restriction policies to the bucket and user tables, specifically storage buckets
Database migration problems:
If the local database is out of sync with the global database, do the following steps for migration syncing:
supabase migrations list
supabase migration repair 20230103054303 --status reverted
supabase db reset
Local database setup:
change the local .env file copy from .env.local.example from the docs correction.
Get the Anon key info of the local instance with npx supabase status
Getting the storage info inside the seed file:
supabase db dump --data-only --schema storage -f ./supabase/seed.sql
Add how to receive the emails localy:
emails get added on inbucket and does not actually get sent to your email, you can find inbucket at http://localhost:54324/monitor with default settings
Amiralizim
changed the title
[Boiler Plate] Add documentation for ubuntu in the docs
[Boiler Plate] Add documentation in devtodollars docs
Jul 15, 2024
Steps to set up Supabase on ubuntu:
sudo apk add --allow-untrusted <...>.apk
sudo dpkg -i <...>.deb
sudo rpm -i <...>.rpm
Add to documentation how to stop docker containers if you shut off the computer with forgeting to do supabase down
Add how to get the types for supabase tables to put into types_db.ts:
npx supabase gen types typescript --project-id "$PROJECT_REF" --schema public
npx supabase gen types typescript --local --schema public > ./nextjs/types_db.ts
Add how to add restriction policies to the bucket and user tables, specifically storage buckets
Database migration problems:
If the local database is out of sync with the global database, do the following steps for migration syncing:
supabase migrations list
supabase migration repair 20230103054303 --status reverted
supabase db reset
npx supabase status
Getting the storage info inside the seed file:
supabase db dump --data-only --schema storage -f ./supabase/seed.sql
Add how to receive the emails localy:
emails get added on inbucket and does not actually get sent to your email, you can find inbucket at http://localhost:54324/monitor with default settings
settings.json add in .vsCode for deno setup
}```
The text was updated successfully, but these errors were encountered: