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
|
2020-05-23 09:14:00 +02:00
|
|
|
pkg_dependencies="postgresql apt-transport-https"
|
2020-05-21 12:49:24 +02:00
|
|
|
|
2021-05-08 11:07:25 +02:00
|
|
|
nodejs_version=12
|
2020-06-13 16:12:37 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PERSONAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# EXPERIMENTAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# FUTURE OFFICIAL HELPERS
|
|
|
|
#=================================================
|