initial commit

This commit is contained in:
arnaucode
2018-06-03 18:53:32 +02:00
commit 8d176e6d71
11 changed files with 191 additions and 0 deletions

2
launcher/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
node_modules
package-lock.json

12
launcher/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:argon
RUN mkdir /launcher
WORKDIR /launcher
ADD . /launcher
RUN npm install -g http-server
CMD http-server
EXPOSE 8080

BIN
launcher/img/etherpad.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

BIN
launcher/img/gogs.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

BIN
launcher/img/kanboard.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

BIN
launcher/img/mumble.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 350 KiB

BIN
launcher/img/nextcloud.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

62
launcher/index.html Normal file
View File

@@ -0,0 +1,62 @@
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<title>Launcher</title>
</head>
<body>
<br><br><br>
<div class="container">
<h3>Web Apps</h3>
<hr>
<div class="row">
<div class="col-sm-2">
<a href="http://127.0.0.1:4002" target="_blank" class="btn btn-outline-info">
<img src="img/etherpad.png" style="max-width:100px;" alt="etherpad" title="etherpad">
</a>
</div>
<div class="col-sm-2">
<a href="http://127.0.0.1:4001" target="_blank" class="btn btn-outline-info">
<img src="img/kanboard.png" style="max-width:100px;" alt="kanboard" title="kanboard">
</a>
</div>
<div class="col-sm-2">
<a href="http://127.0.0.1:4000" target="_blank" class="btn btn-outline-info">
<img src="img/gogs.png" style="max-width:100px;" alt="gogs" title="gogs">
</a>
</div>
<div class="col-sm-2">
<a href="http://127.0.0.1:4000" target="_blank" class="btn btn-outline-info">
<img src="img/nextcloud.png" style="max-width:100px;" alt="nextcloud" title="nextcloud">
</a>
</div>
</div>
<br><br>
<h3>Services</h3>
<hr>
<div class="row">
<div class="col-sm-2">
<a href="http://127.0.0.1:64738" target="_blank" class="btn btn-outline-secondary">
<img src="img/mumble.png" style="max-width:100px;" alt="mumble" title="mumble">
</a>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
</body>
</html>

14
launcher/package.json Normal file
View File

@@ -0,0 +1,14 @@
{
"name": "launcher",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"bootstrap": "^4.1.1"
}
}