43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
/**config api */
|
|
import { ref } from "vue";
|
|
|
|
const env = ref<string>(process.env.NODE_ENV || "development");
|
|
export const apiUrlConfig = import.meta.env.VITE_API_URI_CONFIG;
|
|
export const apiUrlConfigPublish = import.meta.env.VITE_API_PUBLISH_URL;
|
|
|
|
// if (process.env.VUE_APP_TEST) {
|
|
// env = "test";
|
|
// }
|
|
const config = ref<any>({
|
|
development: {
|
|
// API_URI: "https://localhost:7260/api",
|
|
API_URI: "https://bma-ehr.frappet.synology.me/api/v1",
|
|
MEET_URI: "meet.frappet.com",
|
|
LINK_EVALUATE_PUBLISH: "https://bma-ehr-publish.frappet.synology.me",
|
|
},
|
|
test: {
|
|
API_URI: "http://localhost:5010/api/v1",
|
|
MEET_URI: "meet.frappet.com",
|
|
},
|
|
production: {
|
|
API_URI: apiUrlConfig,
|
|
API_URI_ORG_TREE:
|
|
"https://s3cluster.frappet.com/bma-ehr-fpt/organization/strueture/tree_20230707_115124.json",
|
|
MEET_URI: "meet.frappet.com",
|
|
LINK_EVALUATE_PUBLISH: apiUrlConfigPublish,
|
|
},
|
|
});
|
|
|
|
const API_URI = ref<string>(config.value[env.value].API_URI);
|
|
const MEET_URI = ref<string>(config.value[env.value].MEET_URI);
|
|
const LINK_EVALUATE_PUBLISH = ref<string>(
|
|
config.value[env.value].LINK_EVALUATE_PUBLISH
|
|
);
|
|
|
|
export default {
|
|
env: env.value,
|
|
config: config.value,
|
|
API_URI: API_URI.value,
|
|
MEET_URI: MEET_URI.value,
|
|
LINK_EVALUATE_PUBLISH: LINK_EVALUATE_PUBLISH.value,
|
|
};
|