2021-02-21 06:08:46 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# COMMON VARIABLES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# dependencies used by the app
|
2021-07-20 22:07:39 +02:00
|
|
|
lemmy_dependencies="postgresql postgresql-contrib"
|
|
|
|
lemmyui_dependencies="espeak"
|
|
|
|
|
2022-09-24 18:22:25 +02:00
|
|
|
pkg_dependencies="$lemmy_dependencies $lemmyui_dependencies"
|
2021-07-07 16:42:05 +02:00
|
|
|
|
|
|
|
NODEJS_VERSION=12
|
2021-02-21 06:08:46 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PERSONAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# EXPERIMENTAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# FUTURE OFFICIAL HELPERS
|
|
|
|
#=================================================
|