Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
VisualDL
提交
9b96642c
V
VisualDL
项目概览
PaddlePaddle
/
VisualDL
1 年多 前同步成功
通知
88
Star
4655
Fork
642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
5
Wiki
分析
仓库
DevOps
项目成员
Pages
V
VisualDL
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
5
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
9b96642c
编写于
4月 27, 2018
作者:
D
daminglu
提交者:
GitHub
4月 27, 2018
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Create Demo Server Target (#433)
上级
f176cc8f
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
171 addition
and
4 deletion
+171
-4
frontend/package.json
frontend/package.json
+1
-0
frontend/src/common/util/http.js
frontend/src/common/util/http.js
+3
-3
frontend/src/scalars/ui/Chart.vue
frontend/src/scalars/ui/Chart.vue
+5
-1
frontend/src/scalars/ui/Config.vue
frontend/src/scalars/ui/Config.vue
+2
-0
frontend/tool/demo-server.js
frontend/tool/demo-server.js
+94
-0
frontend/tool/webpack.demo.config.js
frontend/tool/webpack.demo.config.js
+33
-0
scripts/start_demo_server.sh
scripts/start_demo_server.sh
+29
-0
scripts/start_dev_server.sh
scripts/start_dev_server.sh
+4
-0
未找到文件。
frontend/package.json
浏览文件 @
9b96642c
...
...
@@ -6,6 +6,7 @@
"release"
:
"cross-env NODE_ENV=production node ./tool/build.js"
,
"build"
:
"cross-env NODE_ENV=dev node ./tool/build.js"
,
"dev"
:
"cross-env NODE_ENV=dev node tool/dev-server.js"
,
"demo"
:
"cross-env NODE_ENV=demo node tool/demo-server.js"
,
"lint"
:
"./node_modules/fecs/bin/fecs --rule"
},
"engines"
:
{
...
...
frontend/src/common/util/http.js
浏览文件 @
9b96642c
...
...
@@ -10,7 +10,7 @@ const instance = axios.create({
timeout
:
30000
,
});
// for better ux, don't send the error msg because there will be too m
utch error
// for better ux, don't send the error msg because there will be too m
any errors
const
responseErrorStatus
=
(
response
)
=>
{
const
data
=
response
.
data
;
// if (data[STATUS] !== 0) {
...
...
@@ -20,13 +20,13 @@ const responseErrorStatus = (response) => {
return
data
;
};
// for better ux, don't send the error msg because there will be too m
utch error
// for better ux, don't send the error msg because there will be too m
any errors
const
responseNetError
=
(
error
)
=>
{
// Notification.error('net error');
return
Promise
.
reject
(
error
);
};
// post f
ro
m
// post f
or
m
const
formInstance
=
axios
.
create
({
baseURL
:
'
/
'
,
timeout
:
3000
,
...
...
frontend/src/scalars/ui/Chart.vue
浏览文件 @
9b96642c
...
...
@@ -144,6 +144,7 @@ export default {
},
data
()
{
return
{
isDemo
:
process
.
env
.
NODE_ENV
===
'
demo
'
,
width
:
400
,
height
:
300
,
isExpand
:
false
,
...
...
@@ -183,11 +184,13 @@ export default {
this
.
initChart
(
this
.
tagInfo
);
this
.
toggleSelectZoom
(
true
);
if
(
this
.
running
)
{
if
(
this
.
running
&&
!
this
.
isDemo
)
{
this
.
startInterval
();
}
this
.
$watch
(
'
running
'
,
function
(
running
)
{
// if it is demo, do not trigger interval
running
=
running
&&
!
this
.
isDemo
;
running
?
this
.
startInterval
()
:
this
.
stopInterval
();
});
},
...
...
@@ -340,6 +343,7 @@ export default {
};
return
getPluginScalarsScalars
(
params
);
});
axios
.
all
(
requestList
).
then
((
resArray
)
=>
{
if
(
resArray
.
every
((
res
)
=>
res
.
status
===
0
))
{
this
.
originData
=
resArray
.
map
((
res
)
=>
res
.
data
);
...
...
frontend/src/scalars/ui/Config.vue
浏览文件 @
9b96642c
...
...
@@ -68,6 +68,7 @@
class=
"visual-dl-page-run-toggle"
dark
block
v-if=
"!isDemo"
>
{{
config
.
running
?
'
Running
'
:
'
Stopped
'
}}
</v-btn>
...
...
@@ -106,6 +107,7 @@ export default {
'
default
'
,
'
descending
'
,
'
ascending
'
,
'
nearest
'
,
],
smoothingValue
:
this
.
config
.
smoothing
,
isDemo
:
process
.
env
.
NODE_ENV
===
'
demo
'
,
};
},
watch
:
{
...
...
frontend/tool/demo-server.js
0 → 100644
浏览文件 @
9b96642c
'
use strict
'
;
process
.
env
.
NODE_ENV
=
'
demo
'
;
// this is the only diff from dev server
let
devPort
=
8999
;
let
opn
=
require
(
'
opn
'
);
let
express
=
require
(
'
express
'
);
let
webpack
=
require
(
'
webpack
'
);
let
proxyMiddleware
=
require
(
'
http-proxy-middleware
'
);
let
webpackConfig
=
require
(
'
./webpack.demo.config
'
);
let
autoresponse
=
require
(
'
autoresponse
'
);
let
path
=
require
(
'
path
'
);
let
port
=
devPort
;
let
autoOpenBrowser
=
false
;
let
app
=
express
();
let
compiler
=
webpack
(
webpackConfig
);
let
devMiddleware
=
require
(
'
webpack-dev-middleware
'
)(
compiler
,
{
publicPath
:
webpackConfig
.
output
.
publicPath
,
disableHostCheck
:
true
,
quiet
:
false
,
noInfo
:
false
,
stats
:
{
colors
:
true
},
headers
:
{
'
Access-Control-Allow-Origin
'
:
'
*
'
}
});
let
hotMiddleware
=
require
(
'
webpack-hot-middleware
'
)(
compiler
,
{
heartbeat
:
2000
});
// force page reload when html-webpack-plugin template changes
compiler
.
plugin
(
'
compilation
'
,
function
(
compilation
)
{
compilation
.
plugin
(
'
html-webpack-plugin-after-emit
'
,
function
(
data
,
cb
)
{
hotMiddleware
.
publish
({
action
:
'
reload
'
});
cb
();
});
});
// autoresponse
let
AutoresponseMatchs
=
[
'
data
'
];
let
matchsReg
=
new
RegExp
(
AutoresponseMatchs
.
join
(
'
\
|
'
));
let
excludeReg
=
/
\.(
html|js|map
)
$/
;
let
isAutoresponseRequest
=
(
path
)
=>
{
return
!
excludeReg
.
test
(
path
)
&&
matchsReg
.
test
(
path
);
}
app
.
use
(
autoresponse
({
logLevel
:
'
debug
'
,
root
:
path
.
dirname
(
__dirname
),
rules
:
[
{
match
:
isAutoresponseRequest
,
method
:
[
'
get
'
,
'
post
'
,
,
'
delete
'
]
}
]
}));
// serve webpack bundle output
app
.
use
(
devMiddleware
);
// enable hot-reload and state-preserving
// compilation error display
app
.
use
(
hotMiddleware
);
let
uri
=
'
http://localhost:
'
+
port
;
let
_resolve
;
let
readyPromise
=
new
Promise
(
resolve
=>
{
_resolve
=
resolve
;
});
console
.
log
(
'
> Starting demo server...
'
);
devMiddleware
.
waitUntilValid
(()
=>
{
console
.
log
(
'
> Listening at
'
+
uri
+
'
\n
'
);
// when env is testing, don't need open it
if
(
autoOpenBrowser
&&
process
.
env
.
NODE_ENV
!==
'
testing
'
)
{
opn
(
uri
);
}
_resolve
();
});
let
server
=
app
.
listen
(
port
);
module
.
exports
=
{
ready
:
readyPromise
,
close
()
{
server
.
close
();
}
};
frontend/tool/webpack.demo.config.js
0 → 100644
浏览文件 @
9b96642c
'
use strict
'
;
const
webpack
=
require
(
'
webpack
'
);
const
FriendlyErrorsPlugin
=
require
(
'
friendly-errors-webpack-plugin
'
);
let
merge
=
require
(
'
webpack-merge
'
);
let
baseWebpackConfig
=
require
(
'
./webpack.config
'
);
// add hot-reload related code to entry chunks
Object
.
keys
(
baseWebpackConfig
.
entry
).
forEach
(
function
(
name
)
{
baseWebpackConfig
.
entry
[
name
]
=
[
'
./tool/dev-client
'
].
concat
(
baseWebpackConfig
.
entry
[
name
]);
});
/**
* demo config
*
* @type {Object}
*/
module
.
exports
=
merge
(
baseWebpackConfig
,
{
// cheap-module-eval-source-map is faster for development
devtool
:
'
#cheap-module-eval-source-map
'
,
plugins
:
[
new
webpack
.
DefinePlugin
({
'
process.env
'
:
{
'
NODE_ENV
'
:
'
"demo"
'
// only diff from webpack.dev.config.js
}
}),
// https://github.com/glenjamin/webpack-hot-middleware#installation--usage
new
webpack
.
HotModuleReplacementPlugin
(),
new
webpack
.
NoEmitOnErrorsPlugin
(),
// https://github.com/ampedandwired/html-webpack-plugin
new
FriendlyErrorsPlugin
()
]
});
scripts/start_demo_server.sh
0 → 100755
浏览文件 @
9b96642c
#!/bin/bash
set
-ex
CURRENT_DIR
=
`
pwd
`
SCRIPT_DIR
=
"
$(
cd
"
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
"
&&
pwd
)
"
cd
$SCRIPT_DIR
/../frontend
export
PYTHONPATH
=
$PYTHONPATH
:
"
$SCRIPT_DIR
/.."
rm
-rf
./dist
mkdir
dist
npm run build
# the config is the only diff from dev_server (webpack.demo.config.js)
./node_modules/.bin/webpack
--watch
--config
tool/webpack.demo.config.js
--output-path
=
../visualdl/server/dist &
# Track webpack pid
WEBPACKPID
=
$!
function
finish
{
kill
-9
$WEBPACKPID
}
trap
finish EXIT HUP INT QUIT PIPE TERM
cd
$CURRENT_DIR
# Run the visualDL with local PATH
python
${
SCRIPT_DIR
}
/../visualdl/server/visualDL
"
$@
"
scripts/start_dev_server.sh
浏览文件 @
9b96642c
...
...
@@ -8,6 +8,10 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd
$SCRIPT_DIR
/../frontend
export
PYTHONPATH
=
$PYTHONPATH
:
"
$SCRIPT_DIR
/.."
rm
-rf
./dist
mkdir
dist
npm run build
./node_modules/.bin/webpack
--watch
--config
tool/webpack.dev.config.js
--output-path
=
../visualdl/server/dist &
# Track webpack pid
WEBPACKPID
=
$!
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录