Skip to content

Commit

Permalink
feat: add api url
Browse files Browse the repository at this point in the history
  • Loading branch information
geeekgod committed Oct 6, 2022
1 parent 1ddc949 commit f34242d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,13 @@
"supportsTablet": true
},
"android": {
"intentFilters":[
"intentFilters": [
{
"action": "VIEW",
"category": ["BROWSABLE", "DEFAULT"],
"category": [
"BROWSABLE",
"DEFAULT"
],
"data": {
"scheme": "com.geeekgod.bloodline.auth"
}
Expand All @@ -35,7 +38,8 @@
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#FFFFFF"
}
},
"versionCode": 1
},
"web": {
"favicon": "./assets/favicon.png"
Expand Down
2 changes: 1 addition & 1 deletion app/api/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import axios from 'axios'

const bloodLineApi = axios.create({
baseURL: 'http://192.168.1.5:4561/api',
baseURL: 'https://bloodline-api.rishabhsingh-dev.me/api',
headers: {
"Content-Type": "application/json",
"Access-Control-Allow-Headers": "Authorization",
Expand Down

0 comments on commit f34242d

Please sign in to comment.