2020-01-18 10:28:47 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# COMMON VARIABLES
|
|
|
|
#=================================================
|
2021-07-08 11:50:04 +02:00
|
|
|
RUBY_VERSION="2.7.3"
|
2021-11-23 21:09:20 +01:00
|
|
|
NODEJS_VERSION="16"
|
2020-01-18 10:28:47 +01:00
|
|
|
|
2022-06-20 08:13:42 +02:00
|
|
|
syncing_server_js_version="1.54.1"
|
|
|
|
auth_version="1.46.2"
|
|
|
|
api_gateway_version="1.40.1"
|
2021-07-08 11:50:04 +02:00
|
|
|
|
2021-09-11 22:26:09 +02:00
|
|
|
swap_needed=2048
|
|
|
|
node_max_old_space_size=6144
|
2021-08-29 00:17:52 +02:00
|
|
|
|
2020-01-18 10:28:47 +01:00
|
|
|
# dependencies used by the app
|
2021-07-04 21:45:43 +02:00
|
|
|
pkg_dependencies=""
|
|
|
|
|
2020-01-18 10:28:47 +01:00
|
|
|
#=================================================
|
|
|
|
# PERSONAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2021-07-06 15:45:29 +02:00
|
|
|
|
2021-01-25 13:08:34 +01:00
|
|
|
|
2020-01-18 10:28:47 +01:00
|
|
|
#================================================
|
|
|
|
# EXPERIMENTAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2021-01-15 19:58:23 +01:00
|
|
|
|
|
|
|
|
2020-01-18 10:28:47 +01:00
|
|
|
#=================================================
|
|
|
|
# FUTURE OFFICIAL HELPERS
|
|
|
|
#=================================================
|