-
Notifications
You must be signed in to change notification settings - Fork 5.3k
/
Copy pathupload-app-files-to-supabase.mjs
61 lines (51 loc) · 1.71 KB
/
upload-app-files-to-supabase.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import { createClient } from '@supabase/supabase-js'
import { readFile } from 'fs/promises'
import { glob } from 'glob'
import path from 'path'
import 'dotenv/config'
if (!process.env.SUPABASE_URL || !process.env.SUPABASE_KEY) {
throw new Error('Missing required environment variables SUPABASE_URL and/or SUPABASE_KEY')
}
// Configure Supabase client
const supabase = createClient(
process.env.SUPABASE_URL,
process.env.SUPABASE_KEY
)
async function findAndUploadFiles() {
try {
// Find all .app.mjs files recursively
const files = await glob('../components/**/*.app.mjs', {
// No need to recurse into the standard subdirs, since app files are always at
// the root of the components/${app} directory
ignore: ['node_modules/**', 'actions/**', 'common/**', 'sources/**'],
absolute: true
})
console.log(`Found ${files.length} .app.mjs files`)
for (const filePath of files) {
try {
const content = await readFile(filePath, 'utf8')
const filename = path.basename(filePath)
const app = filename.replace('.app.mjs', '')
const { data, error } = await supabase
.from('registry_app_files')
.insert({
app: app,
app_file: content
})
if (error) {
console.error(`Error uploading ${filename}:`, error)
continue
}
console.log(`Successfully uploaded ${filename}`)
} catch (err) {
console.error(`Error processing ${filePath}:`, err)
}
}
} catch (err) {
console.error('Error finding files:', err)
}
}
// Run the script
findAndUploadFiles()
.then(() => console.log('Upload complete'))
.catch(err => console.error('Script failed:', err))