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"
|
|
|
|
|
|
|
|
NODEJS_VERSION=12
|
|
|
|
|
2021-04-10 19:17:43 +02:00
|
|
|
REPOSITORY="https://framagit.org/framasoft/peertube/search-index"
|
2020-10-31 14:18:46 +01:00
|
|
|
|
2021-12-28 17:28:01 +01:00
|
|
|
COMMIT="5c8dc80186971f6f0b837ea484dde668ca437bd7"
|
2020-10-31 14:18:46 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PERSONAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# EXPERIMENTAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# FUTURE OFFICIAL HELPERS
|
|
|
|
#=================================================
|