mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
18 lines
345 B
Bash
18 lines
345 B
Bash
#!/bin/bash
|
|
|
|
# install node.js
|
|
if [ "${CRAWLAB_SERVER_LANG_NODE}" = "Y" ];
|
|
then
|
|
echo "installing node.js"
|
|
/bin/sh /app/backend/scripts/install-nodejs.sh
|
|
echo "installed node.js"
|
|
fi
|
|
|
|
# install java
|
|
if [ "${CRAWLAB_SERVER_LANG_JAVA}" = "Y" ];
|
|
then
|
|
echo "installing java"
|
|
/bin/sh /app/backend/scripts/install-java.sh
|
|
echo "installed java"
|
|
fi
|