├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── common_functions.sh ├── create_directories.sh ├── create_riven_compose.sh ├── create_troubleshooting_file.sh ├── install_docker.sh ├── install_plex.sh ├── main_setup.sh ├── onboarding.sh ├── setup_zurg_and_rclone.sh ├── windows_install.bat └── windows_proxy.bat /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neoo-Blue/DRiven/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neoo-Blue/DRiven/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neoo-Blue/DRiven/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neoo-Blue/DRiven/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neoo-Blue/DRiven/HEAD/README.md -------------------------------------------------------------------------------- /common_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neoo-Blue/DRiven/HEAD/common_functions.sh -------------------------------------------------------------------------------- /create_directories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neoo-Blue/DRiven/HEAD/create_directories.sh -------------------------------------------------------------------------------- /create_riven_compose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neoo-Blue/DRiven/HEAD/create_riven_compose.sh -------------------------------------------------------------------------------- /create_troubleshooting_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neoo-Blue/DRiven/HEAD/create_troubleshooting_file.sh -------------------------------------------------------------------------------- /install_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neoo-Blue/DRiven/HEAD/install_docker.sh -------------------------------------------------------------------------------- /install_plex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neoo-Blue/DRiven/HEAD/install_plex.sh -------------------------------------------------------------------------------- /main_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neoo-Blue/DRiven/HEAD/main_setup.sh -------------------------------------------------------------------------------- /onboarding.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neoo-Blue/DRiven/HEAD/onboarding.sh -------------------------------------------------------------------------------- /setup_zurg_and_rclone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neoo-Blue/DRiven/HEAD/setup_zurg_and_rclone.sh -------------------------------------------------------------------------------- /windows_install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neoo-Blue/DRiven/HEAD/windows_install.bat -------------------------------------------------------------------------------- /windows_proxy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neoo-Blue/DRiven/HEAD/windows_proxy.bat --------------------------------------------------------------------------------