We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c65b424 commit ac52ba7Copy full SHA for ac52ba7
README.md
@@ -14,9 +14,11 @@ Our Data Stack architecture
14
15
## On-line Analytical Processing
16
17
+* ClickHouse
18
* Apache Superset
19
-## Graph
20
+## Platform
21
-* Neo4j
22
+* Hadoop (Dockerize)
23
+* Spark (Dockerize)
24
oltp/pgadmin4/build.sh
@@ -0,0 +1,9 @@
1
+#!/bin/bash
2
+VER="6.12"
3
+PKG="pgadmin4-${VER}"
4
+wget -c "https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v${VER}/source/${PKG}.tar.gz"
5
+rm -rf ${PKG}
6
+tar xf ${PKG}.tar.gz
7
+cd ${PKG}
8
+./configure --prefix=/opt/kalamangga-net
9
+make
0 commit comments