This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const server = 'http://192.168.0.112:8088/api/public/'; | |
export const API_LIST = { | |
LOG_IN: 'login', | |
//List Master API | |
API_GET_LIST_USER: 'user-list', | |
API_GET_LIST_MANAGER: 'manager-list', | |
API_EDIT_PROFILE: 'edit-user', | |
API_GET_RELATIONSHIP_LEVEL: 'master/relationship-level', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// VSCode IntelliSense | |
// Controls if quick suggestions should show up while typing | |
"editor.quickSuggestions": { | |
"other": true, | |
"comments": false, | |
"strings": false | |
}, | |
// Controls whether suggestions should be accepted on commit characters. For example, in JavaScript, the semi-colon (`;`) can be a commit character that accepts a suggestion and types that character. | |
"editor.acceptSuggestionOnCommitCharacter": true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Batch link | |
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\bash.exe", | |
"terminal.integrated.shellArgs.windows": ["-c", "zsh"], | |
"git.path": "/usr/bin/git" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Batch link | |
"shell": "C:\\Windows\\System32\\bash.exe", | |
// for setting shell arguments (i.e. for using interactive shellArgs: `['-i']`) | |
// by default `['--login']` will be used | |
"shellArgs": ["-c", "zsh && cd ~"] |