mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 18:20:27 +00:00
* using browsersync instead of livereload * `gulp serve` works as before * `gulp sync` starts browserSync and serves UI on port 3000 * everything is built in `build/` * build release with `gulp build --release`
24 lines
678 B
HTML
24 lines
678 B
HTML
<!doctype html>
|
|
<html class="no-js">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Weave Scope</title>
|
|
<meta name="description" content="">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
<body>
|
|
<!--[if lt IE 10]>
|
|
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
|
|
<![endif]-->
|
|
<div class="wrap">
|
|
<div id="app"></div>
|
|
</div>
|
|
|
|
<!-- @ifdef DEBUG -->
|
|
<script>window.WS_URL = 'ws://localhost:4040';</script>
|
|
<!-- @endif -->
|
|
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|