2021-09-21 00:25:53 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# COMMON VARIABLES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# dependencies used by the app
|
2021-09-21 02:09:11 +02:00
|
|
|
pkg_dependencies="postgresql postgresql-client redis-server redis-tools"
|
2021-09-21 00:25:53 +02:00
|
|
|
|
2021-09-21 02:09:11 +02:00
|
|
|
NODEJS_VERSION=14
|
2021-09-21 00:25:53 +02:00
|
|
|
#=================================================
|
|
|
|
# PERSONAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# EXPERIMENTAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# FUTURE OFFICIAL HELPERS
|
|
|
|
#=================================================
|