echo"[1/$total_steps] Found Python $python_version, skipping upgrade"
fi
init_ansible
if["$is_dry_run"="false"];then
run_playbook
configure_server
fi
if["$is_dry_run"="true"];then
echo"Rerun with DRY_RUN=false for a real install."
else
echo"Done!"
echo" - Everything was installed in the $base_path directory"
if[!-z"$funkwhale_admin_username"];then
echo" - Created a superuser account with username $funkwhale_admin_username and the password you supplied"
fi
if["$funkwhale_nginx_managed"="true"];then
echo" - Your Funkwhale server is now up and running at https://$funkwhale_hostname"
else
echo" - To complete the installation, you need to setup an Nginx or Apache2 reverse proxy: https://docs.funkwhale.audio/installation/index.html#reverse-proxy"
fi
echo" - You can run management commands by calling $base_path/manage, e.g $base_path/manage import_files"