From 14aaa6863e94bea5fc76a7c2d981f7903718973b Mon Sep 17 00:00:00 2001 From: Guilherme Souza Date: Wed, 8 Nov 2023 07:31:46 -0300 Subject: [PATCH] docs: fix URL for the package in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a52523cf..6903c864 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ let package = Package( ... dependencies: [ ... - .package(name: "Supabase", url: "https://github.com/supabase/supabase-swift.git", from: "1.0.0"), // Add the package + .package(name: "Supabase", url: "https://github.com/supabase-community/supabase-swift.git", from: "1.0.0"), // Add the package ], targets: [ .target( @@ -27,7 +27,7 @@ let package = Package( ) ``` -If you're using Xcode, [use this guide](https://developer.apple.com/documentation/swift_packages/adding_package_dependencies_to_your_app) to add `supabase-swift` to your project. Use `https://github.com/supabase/supabase-swift.git` for the url when Xcode asks. +If you're using Xcode, [use this guide](https://developer.apple.com/documentation/swift_packages/adding_package_dependencies_to_your_app) to add `supabase-swift` to your project. Use `https://github.com/supabase-community/supabase-swift.git` for the url when Xcode asks. If you don't want the full Supabase environment, you can also add individual packages, such as `Functions`, `GoTrue`, `Realtime`, `Storage`, or `PostgREST`.