Last active
March 28, 2018 11:34
-
-
Save PierreZ/05b9da0787e32e916b9de452b183aa0b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
http://0.0.0.0:80 { | |
tls off | |
browse | |
cors / | |
markdown / { | |
template index /templates/index.html | |
css /templates/index.css | |
} | |
root /Users/pierrezemb/workspace/personal/warpscript/hands-on | |
} | |
http://0.0.0.0:8081 { | |
tls off | |
root /Users/pierrezemb/workspace/personal/web/warp10-quantum/build/bundled | |
} | |
http://0.0.0.0:8082 { | |
tls off | |
root /Users/pierrezemb/workspace/personal/web/www.warp10.io/_site | |
} |
This file contains hidden or 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
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes"> | |
<title>{% if page.title %}{{ page.title }} - {{ site.title }}{% else %}{{ site.title }}{% endif %}</title> | |
<link rel="icon" href="favicon.ico" type="image/x-icon"/> | |
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/> | |
<style> | |
body { | |
background-color: #eeeeee; | |
} | |
</style> | |
<link rel="stylesheet" href="http://192.168.1.2/assets/bootstrap.min.css"> | |
<link rel="stylesheet" href="http://192.168.1.2/assets/font-awesome.min.css"> | |
<link rel="stylesheet" href="http://192.168.1.2/assets/https://cdn.jsdelivr.net/docsearch.js/1/docsearch.min.css" /> | |
<script src="http://192.168.1.2/assets/webcomponents-lite.js"></script> | |
<script src="http://192.168.1.2/assets/jquery.js"></script> | |
<script src="http://192.168.1.2/assets/bootstrap.js"></script> | |
<link rel="import" href="http://192.168.1.2/assets/warp10-components.html"> | |
<!-- | |
<script src="http://localhost:8000/bower_components/webcomponentsjs/webcomponents-lite.js"></script> | |
<script src="http://localhost:8000/bower_components/jquery/dist/jquery.js"></script> | |
<script src="http://localhost:8000/bower_components/bootstrap/dist/js/bootstrap.js"></script> | |
<link rel="import" href="http://localhost:8000/bower_components/polymer/polymer.html"> | |
<link rel="import" href="http://localhost:8000/bower_components/warp10-navbar/warp10-navbar.html"> | |
<link rel="import" href="http://localhost:8000/bower_components/warp10-quantum/warp10-conf.html"> | |
<link rel="import" href="http://localhost:8000/bower_components/warp10-quantum/warp10-quantum-widget.html"> | |
--> | |
<!-- Custom CSS --> | |
<link rel="stylesheet" href="{{ "/css" | prepend: site.baseurl }}/{{ site.filename }}.css"> | |
<link rel="stylesheet" href="{{ "/css" | prepend: site.baseurl }}/{{ site.filename }}-navbar.css"> | |
<!-- Pygments Github CSS --> | |
<link rel="stylesheet" href="{{ "/css" | prepend: site.baseurl }}/syntax.css"> | |
<style> | |
:host { | |
display: block; | |
} | |
.top-10 { margin-top:10px; } | |
h4 { | |
font-weight: bold; | |
} | |
.list-group-item { | |
cursor: pointer; | |
} | |
</style> | |
</head> |
This file contains hidden or 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
#!/bin/bash | |
java -cp bin/warp10-1.2.15.jar io.warp10.standalone.Warp etc/conf-standalone.conf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment