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
|
2021-11-30 11:37:52 +01:00
|
|
|
pkg_dependencies="ffmpeg postgresql postgresql-contrib openssl g++ mailutils apt-transport-https"
|
2019-04-03 00:42:45 +02:00
|
|
|
|
2022-06-10 01:21:56 +02:00
|
|
|
nodejs_version=16
|
2020-06-01 03:40:44 +02:00
|
|
|
|
2019-04-03 00:42:45 +02:00
|
|
|
#=================================================
|
|
|
|
# PERSONAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# EXPERIMENTAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# FUTURE OFFICIAL HELPERS
|
|
|
|
#=================================================
|