Skip to content

Commit b76d5a9

Browse files
committed
firebase deploy
1 parent 4518e1e commit b76d5a9

File tree

4 files changed

+22
-2
lines changed

4 files changed

+22
-2
lines changed

.firebaserc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"projects": {
3+
"default": "quantum-model-generator"
4+
}
5+
}

firebase.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"hosting": {
3+
"public": "build",
4+
"ignore": [
5+
"firebase.json",
6+
"**/.*",
7+
"**/node_modules/**"
8+
],
9+
"rewrites": [{
10+
"source": "**",
11+
"destination": "/index.html"
12+
}]
13+
}
14+
}

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
"@babel/plugin-proposal-private-property-in-object": "^7.16.7",
6464
"@types/react-katex": "^3.0.4",
6565
"@types/styled-components": "^5.1.26",
66-
"jest-sonar-reporter": "^2.0.0"
66+
"jest-sonar-reporter": "^2.0.0",
67+
"firebase-tools": "^13.3.0"
6768
}
6869
}

src/setup/host.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
const host = 'http://localhost:3001';
1+
const host = 'http://44.240.61.16:3001';
22
export default host;

0 commit comments

Comments
 (0)