Added 'cloud storage' functionality

This commit is contained in:
Christopher Sanden
2026-03-04 02:15:53 +01:00
parent 19b9438ef8
commit 45ab15ff40
29 changed files with 1822 additions and 109 deletions

10
FastNotes/app.config.js Normal file
View File

@@ -0,0 +1,10 @@
import "dotenv/config";
export default ({ config }) => ({
...config,
extra: {
...config.extra,
supabaseUrl: process.env.EXPO_PUBLIC_SUPABASE_URL,
supabaseKey: process.env.EXPO_PUBLIC_SUPABASE_KEY,
},
});