24 lines
551 B
Bash
24 lines
551 B
Bash
# Check if already installed
|
|
if [[ $(which deno) == "/usr/local/bin/deno" ]]; then
|
|
# Upgrade deno
|
|
deno upgrade
|
|
else
|
|
# Install deno
|
|
curl -fsSL https://deno.land/install.sh | DENO_INSTALL=/usr/local sh
|
|
|
|
# Create group and user
|
|
groupadd --system deno
|
|
|
|
useradd --system \
|
|
--gid deno \
|
|
--create-home \
|
|
--home-dir /var/lib/deno \
|
|
--shell /usr/sbin/nologin \
|
|
--comment "Deno js engine" \
|
|
deno
|
|
fi
|
|
|
|
# Clone website repo
|
|
mkdir -p /srv/www
|
|
git clone -b main --depth 1 https://git.cohabit.fr/cohabit/website.git /srv/www
|