17 lines
411 B
JavaScript
17 lines
411 B
JavaScript
|
|
const authType = "Basic"
|
|
const username = "api@henry-pump.com";
|
|
const password = "HenryPump@1903"
|
|
|
|
const authToken = btoa(username + ":" + password);
|
|
|
|
export const auth = {
|
|
username: username,
|
|
authType: authType,
|
|
token: authToken
|
|
}
|
|
|
|
// export const baseURL = "https://henrypump.meshify.com/api/v3/";
|
|
// export const baseURL = "http://localhost:3000/"
|
|
export const baseURL = "http://api.henrypump.cloud/"
|