2020-10-31 14:18:46 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# COMMON VARIABLES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# dependencies used by the app
|
|
|
|
pkg_dependencies="git"
|
2021-04-10 19:17:43 +02:00
|
|
|
|
2020-10-31 14:18:46 +01:00
|
|
|
extra_pkg_dependencies="elasticsearch-oss"
|
|
|
|
|
2022-11-14 21:27:17 +01:00
|
|
|
NODEJS_VERSION=14
|
2020-10-31 14:18:46 +01:00
|
|
|
|
2021-04-10 19:17:43 +02:00
|
|
|
REPOSITORY="https://framagit.org/framasoft/peertube/search-index"
|
2020-10-31 14:18:46 +01:00
|
|
|
|
2022-11-14 21:27:17 +01:00
|
|
|
COMMIT="316adda0db184cb36f0645a60dc8f6a1611ecd28"
|
2020-10-31 14:18:46 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PERSONAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# EXPERIMENTAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# FUTURE OFFICIAL HELPERS
|
|
|
|
#=================================================
|