-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackup.config.js
More file actions
36 lines (30 loc) · 928 Bytes
/
Copy pathbackup.config.js
File metadata and controls
36 lines (30 loc) · 928 Bytes
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
// backup.config.js
// Configure this file for your Supabase project.
// List all tables you want to back up.
// Auth users are always backed up automatically.
export default {
// Your Supabase table names to back up, listed in restore/dependency order (parents first)
// Use ['*'] to back up all public database tables.
tables: [
'analyses'
],
// Database tables to exclude from backup
excludeTables: [
// 'some_private_table'
],
// Timezone for backup folder timestamps
// Full list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
timezone: 'Asia/Kolkata',
// Backup folder inside the repo
backupDir: 'backups',
// Your Supabase storage bucket names to back up
// Use ['*'] to back up all storage buckets.
buckets: [
'Gones',
// add all your storage buckets here
],
// Storage buckets to exclude from backup
excludeBuckets: [
// 'temp-files'
],
};