#!/bin/bash # SPDX-FileCopyrightText: 2023 Aravinth Manivannan # # SPDX-License-Identifier: AGPL-3.0-or-later set -Exeuo pipefail source lib.sh main() { wait_for_env forgejo_root init_users_repo echo "All Good! :)" } main exit 0