2019-11-28 02:05:34 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-05-21 12:49:24 +02:00
|
|
|
#=================================================
|
|
|
|
# COMMON VARIABLES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# dependencies used by the app
|
2021-06-13 09:50:37 +02:00
|
|
|
pkg_dependencies="postgresql apt-transport-https libssl-dev"
|
2020-05-21 12:49:24 +02:00
|
|
|
|
2021-06-13 09:50:37 +02:00
|
|
|
nodejs_version=11
|
2020-06-13 16:12:37 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PERSONAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# EXPERIMENTAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# FUTURE OFFICIAL HELPERS
|
|
|
|
#=================================================
|