2022-12-16 11:02:52 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# COMMON VARIABLES
|
2022-12-29 10:06:46 +01:00
|
|
|
#=================================================
|
2022-12-16 11:02:52 +01:00
|
|
|
nodejs_version=16
|
|
|
|
|
|
|
|
# dependencies used by the app (must be on a single line)
|
|
|
|
pkg_dependencies=""
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PERSONAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# EXPERIMENTAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# FUTURE OFFICIAL HELPERS
|
|
|
|
#=================================================
|