Compare commits

...

2 Commits

Author SHA1 Message Date
tteckster ed6443bc84
default Debian 12
- Homer
- Cronicle
Thanks @zelig2
2023-11-13 12:10:15 -05:00
tteckster 53f0f7493a
Update homarr-install.sh
change delimiter in sed command
2023-11-13 11:34:32 -05:00
3 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ var_disk="2"
var_cpu="1" var_cpu="1"
var_ram="512" var_ram="512"
var_os="debian" var_os="debian"
var_version="11" var_version="12"
variables variables
color color
catch_errors catch_errors

View File

@ -23,7 +23,7 @@ var_disk="2"
var_cpu="1" var_cpu="1"
var_ram="512" var_ram="512"
var_os="debian" var_os="debian"
var_version="11" var_version="12"
variables variables
color color
catch_errors catch_errors

View File

@ -39,7 +39,7 @@ msg_info "Installing Homarr (Patience)"
git clone -q https://github.com/ajnart/homarr.git /opt/homarr git clone -q https://github.com/ajnart/homarr.git /opt/homarr
cd /opt/homarr cd /opt/homarr
cp -p /opt/homarr/.env.example /opt/homarr/.env cp -p /opt/homarr/.env.example /opt/homarr/.env
sed -i 's/NEXTAUTH_SECRET="[^"]*"/NEXTAUTH_SECRET="'"$(openssl rand -base64 32)"'"/' /opt/homarr/.env sed -i 's|NEXTAUTH_SECRET="[^"]*"|NEXTAUTH_SECRET="'"$(openssl rand -base64 32)"'"|' /opt/homarr/.env
$STD yarn install $STD yarn install
$STD yarn build $STD yarn build
$STD yarn db:migrate $STD yarn db:migrate