From d5e714d1b3128eaaf7eb5ac23e6c9ff0f6ce70f6 Mon Sep 17 00:00:00 2001 From: Aevann Date: Fri, 20 Jan 2023 08:19:38 +0200 Subject: [PATCH] add '#!/bin/bash' to all .sh files --- startup.sh | 2 ++ startup_docker.sh | 2 ++ ubuntu_setup.sh | 2 ++ 3 files changed, 6 insertions(+) diff --git a/startup.sh b/startup.sh index ca7cb301a..1680c605b 100644 --- a/startup.sh +++ b/startup.sh @@ -1,3 +1,5 @@ +#!/bin/bash + cd /rDrama . ./.env gunicorn files.__main__:app -w 3 diff --git a/startup_docker.sh b/startup_docker.sh index ced2238f9..3eacff909 100644 --- a/startup_docker.sh +++ b/startup_docker.sh @@ -1,3 +1,5 @@ +#!/bin/bash + . ./.env export DATABASE_URL="postgresql://postgres@postgres:5432" export REDIS_URL="redis://redis:6379" diff --git a/ubuntu_setup.sh b/ubuntu_setup.sh index baab61734..538828fd2 100644 --- a/ubuntu_setup.sh +++ b/ubuntu_setup.sh @@ -1,3 +1,5 @@ +#!/bin/bash + apt -y update apt -y upgrade apt -y install git redis-server python3-pip ffmpeg tmux nginx snapd ufw gpg-agent htop nano