mirror of
https://github.com/zhigang1992/github-telegram-notification.git
synced 2026-01-12 22:39:29 +08:00
43 lines
671 B
JSON
43 lines
671 B
JSON
{
|
|
"database": {
|
|
"rules": "database.rules.json"
|
|
},
|
|
"functions": {
|
|
"predeploy": [
|
|
"npm --prefix \"$RESOURCE_DIR\" run lint",
|
|
"npm --prefix \"$RESOURCE_DIR\" run build"
|
|
]
|
|
},
|
|
"hosting": {
|
|
"public": "public",
|
|
"ignore": [
|
|
"firebase.json",
|
|
"**/.*",
|
|
"**/node_modules/**"
|
|
],
|
|
"rewrites": [
|
|
{
|
|
"source": "**",
|
|
"destination": "/index.html"
|
|
}
|
|
]
|
|
},
|
|
"emulators": {
|
|
"auth": {
|
|
"port": 9099
|
|
},
|
|
"functions": {
|
|
"port": 5001
|
|
},
|
|
"database": {
|
|
"port": 9000
|
|
},
|
|
"hosting": {
|
|
"port": 5000
|
|
},
|
|
"ui": {
|
|
"enabled": true
|
|
}
|
|
}
|
|
}
|