-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfirebase.json
More file actions
51 lines (51 loc) · 1020 Bytes
/
firebase.json
File metadata and controls
51 lines (51 loc) · 1020 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"apphosting": [
{
"backendId": "jules-task-queue",
"rootDir": ".",
"ignore": [
"node_modules",
".git",
"firebase-debug.log",
"firebase-debug.*.log",
".next",
"out",
"build",
"coverage",
".env*",
".vercel",
"*.md",
"*.log",
".DS_Store",
"Thumbs.db"
]
}
],
"functions": [
{
"source": "functions",
"codebase": "default",
"runtime": "nodejs18",
"ignore": [
"node_modules",
".git",
"firebase-debug.log",
"firebase-debug.*.log",
"*.local",
"src/**/*.test.ts",
"src/**/*.spec.ts"
],
"predeploy": ["npm --prefix \"$RESOURCE_DIR\" run build"],
"env": [
{
"variable": "NODE_ENV",
"value": "production"
},
{
"variable": "GITHUB_APP_CALLBACK_URL",
"secret": "GITHUB_APP_CALLBACK_URL"
}
]
}
]
}