mirror of
https://gitee.com/eolink_admin/postcat.git
synced 2024-11-30 02:37:57 +08:00
3d066e4282
* init * feat: ws port => 13928 * v1.8.0-beta * feat: version -> 1.8.0 * feat: reset password * fix: sync websocket port * init * feat: ws port => 13928 * v1.8.0-beta * feat: reset password * fix: sync websocket port * fix: getWebsocketPort error in web * feat: add workspace member role name * delete console * update: UI * feat: update UI * perf: UI * fix: something * style(select-workspace): select style * fix: mock not be init * fix: mock match reg * fix: [member, workspace] sidebar item should show always * feat: update form * feat: export local project data method * feat: update UI * feat: update UI * feat: update UI * feat: update UI * feat: add await in this.project.exportLocalProjectData() * feat: add workspace should show login dialog when not login * pref: tips * feat: update UI * feat: add user service in data-storage * fix: unit mock component * feat: add import api to add button * feat: update Text * feat: add workspace authEnum * feat: add Emnu about workspace * feat: update UI * translate * update code * enhancement: save api stay in edit page * pref: add tips when hover download icon * feat: fix login modal wake up after logout * fix: getWorkspaceInfo error * fix: import api data error * fix: reset add workspace modal data * fix: menage access btn auth * fix: clear all user data while logout * feat: clear all user data on http-401 * fix: user dropdown menu can not click * fix: router switch member confition * fix: save ws link fail * fix: workspace switch to local after delete workspace Co-authored-by: 夜鹰 <17kungfuboy@gmail.com> Co-authored-by: buqiyuan <1743369777@qq.com>
50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Renderer",
|
|
"type": "chrome",
|
|
"request": "attach",
|
|
"port": 9876,
|
|
"url": "http://localhost:4200",
|
|
"sourceMaps": true,
|
|
"timeout": 10000,
|
|
"trace": "verbose",
|
|
"sourceMapPathOverrides": {
|
|
"webpack:///./*": "${workspaceFolder}/*"
|
|
},
|
|
"preLaunchTask": "Build.Renderer"
|
|
},
|
|
{
|
|
"name": "Main",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"protocol": "inspector",
|
|
"cwd": "${workspaceFolder}",
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
|
|
"trace": "verbose",
|
|
"runtimeArgs": [
|
|
"--serve",
|
|
".",
|
|
"--remote-debugging-port=9876"
|
|
],
|
|
"windows": {
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
|
|
},
|
|
"preLaunchTask": "Build.Main"
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "Application Debug",
|
|
"configurations": [
|
|
"Renderer",
|
|
"Main"
|
|
]
|
|
}
|
|
]
|
|
}
|