summaryrefslogtreecommitdiffstats
path: root/documentation/de/installation
diff options
context:
space:
mode:
authorJannik Schönartz2019-03-26 18:12:51 +0100
committerJannik Schönartz2019-03-26 18:12:51 +0100
commite2748fc46cbbae0ee7caf84d92b4a84a23f5783f (patch)
tree55003c866f106f02bb14e98650a30b143d65b79d /documentation/de/installation
parent[webapp/alerts] Fix: Notification didn't fill the whole container when having... (diff)
downloadbas-e2748fc46cbbae0ee7caf84d92b4a84a23f5783f.tar.gz
bas-e2748fc46cbbae0ee7caf84d92b4a84a23f5783f.tar.xz
bas-e2748fc46cbbae0ee7caf84d92b4a84a23f5783f.zip
[docutmentation] Add german language support (wip)
Diffstat (limited to 'documentation/de/installation')
-rw-r--r--documentation/de/installation/README.md50
1 files changed, 50 insertions, 0 deletions
diff --git a/documentation/de/installation/README.md b/documentation/de/installation/README.md
new file mode 100644
index 0000000..a796ed8
--- /dev/null
+++ b/documentation/de/installation/README.md
@@ -0,0 +1,50 @@
+# Installation
+
+
+
+
+## Installation der benötigten Packete
+```bash
+sudo apt-get install git
+sudo apt-get install curl software-properties-common
+curl -sL https://deb.nodesource.com/setup_10.x | sudo bash -
+sudo apt-get install nodejs
+```
+
+## Installation des node.js Servers
+```bash
+git clone http://git.ks.uni-freiburg.de/lsfks/projekte/bas.git
+cd bas/server
+npm install
+```
+
+## Kopiere Zertifikate
+```bash
+scp privkey.pem user@host:path/privkey.pem
+scp fullchain.pem user@host:path/fullchain.pem
+```
+
+## Einrichten der Konfigurationsdateien
+```bash
+cd bas/server/config
+cp authentication.template.json authentication.json
+cp database.template.json database.json
+cp config.template.json config.json
+```
+
+## Installation der webapp
+```bash
+cd bas/webapp
+npm install
+npm run build
+```
+
+## Ausführen des node.js Server
+```bash
+cd bas/server
+npm start
+```
+
+## Standart Ports
+* Server: 3000
+* tftp: Serverport + 1 (3001)