2021-09-11 16:08:56 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# COMMON VARIABLES
|
|
|
|
#=================================================
|
|
|
|
|
2021-09-12 14:49:16 +02:00
|
|
|
# Node version
|
2022-06-03 11:25:02 +02:00
|
|
|
NODEJS_VERSION=16
|
2021-09-11 16:08:56 +02:00
|
|
|
|
2022-09-05 21:45:47 +02:00
|
|
|
# dependencies used by the app (must be on a single line)
|
|
|
|
pkg_dependencies="postgresql"
|
|
|
|
|
2021-09-11 16:08:56 +02:00
|
|
|
#=================================================
|
|
|
|
# PERSONAL HELPERS
|
|
|
|
#=================================================
|
2022-09-05 21:45:47 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# EXPERIMENTAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# FUTURE OFFICIAL HELPERS
|
|
|
|
#=================================================
|