2017-12-08 00:35:52 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-04-03 00:42:45 +02:00
|
|
|
#=================================================
|
|
|
|
# COMMON VARIABLES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# dependencies used by the app
|
2019-10-11 23:20:15 +02:00
|
|
|
pkg_dependencies="ffmpeg postgresql postgresql-contrib openssl g++ redis-server redis-tools mailutils apt-transport-https"
|
2019-04-03 00:42:45 +02:00
|
|
|
|
2021-04-11 20:43:53 +02:00
|
|
|
NODEJS_VERSION=14
|
2020-06-01 03:40:44 +02:00
|
|
|
|
2019-04-03 00:42:45 +02:00
|
|
|
#=================================================
|
|
|
|
# PERSONAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# EXPERIMENTAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# FUTURE OFFICIAL HELPERS
|
|
|
|
#=================================================
|