Skip to content

Commit 0407c51

Browse files
committed
firebase deployment
1 parent bb69001 commit 0407c51

File tree

4 files changed

+18
-1
lines changed

4 files changed

+18
-1
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": "onetaskapp"
4+
}
5+
}

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# One-Task
22

33
> Vue.js app featuring a task manager with chatbot installed to assist with each task. !!Currently under heavy development!!
4+
> Deployed in https://onetaskapp.firebaseapp.com
45
56
## Build Setup
67

firebase.json

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

src/utils/api.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var axios = require('axios');
22
axios.defaults.withCredentials = true; //used to send cookies tokens in request headers
3-
var nodeurl = process.env.NODE_URI || 'http://localhost:3000';
3+
var nodeurl = 'https://onetasknode.herokuapp.com'; //process.env.NODE_URI || 'http://localhost:3000';
44

55
import api from '../utils/api'
66

0 commit comments

Comments
 (0)