├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .idea ├── .gitignore ├── misc.xml ├── modules.xml └── vcs.xml ├── ARKSurvivalAscended-Linux.iml ├── LICENSE ├── README.md ├── compile.py ├── compile.sources ├── dist ├── community_scripts.json ├── manage.py ├── server-install-debian12.sh └── warlock.yaml ├── docs ├── access-files-sftp.md ├── advanced-usage.md ├── ark-ascended-installer.gif ├── ark-ascended-installer.mp4 ├── integrate-discord.md └── using-beacon.md ├── images ├── ark-128x128.webp ├── ark-connect-screen.webp ├── ark_460x215.webp ├── asa-1920x1080.webp ├── beacon-deploy-changes.webp ├── beacon-finalize-import.webp ├── beacon-game-location.webp ├── beacon-import-source.webp ├── beacon-sftp-config.webp ├── beacon.svg ├── discord-integration-1.png ├── discord-integration-2.png ├── discord-integration-3.png ├── discord-logo.webp ├── port-forward-on-ubiquiti.webp ├── server-shutdown-notice.png ├── ssh-key-powershell.webp ├── ssh-keygen-powershell.webp ├── warlock.webp ├── windows-ssh-key.webp ├── winscp-step1.png ├── winscp-step2.png ├── winscp-step3.png └── winscp-step4.png ├── scripts ├── ark-override-template.service ├── ark-template.service ├── backup.sh ├── configs.yaml ├── manage.py ├── restore.sh ├── start_all.sh ├── stop_all.sh └── update.sh └── src ├── manage.py └── server-install-debian12.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | ko_fi: bitsandbytes 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /ARKSurvivalAscended-Linux.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/ARKSurvivalAscended-Linux.iml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/README.md -------------------------------------------------------------------------------- /compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/compile.py -------------------------------------------------------------------------------- /compile.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/compile.sources -------------------------------------------------------------------------------- /dist/community_scripts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/dist/community_scripts.json -------------------------------------------------------------------------------- /dist/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/dist/manage.py -------------------------------------------------------------------------------- /dist/server-install-debian12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/dist/server-install-debian12.sh -------------------------------------------------------------------------------- /dist/warlock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/dist/warlock.yaml -------------------------------------------------------------------------------- /docs/access-files-sftp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/docs/access-files-sftp.md -------------------------------------------------------------------------------- /docs/advanced-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/docs/advanced-usage.md -------------------------------------------------------------------------------- /docs/ark-ascended-installer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/docs/ark-ascended-installer.gif -------------------------------------------------------------------------------- /docs/ark-ascended-installer.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/docs/ark-ascended-installer.mp4 -------------------------------------------------------------------------------- /docs/integrate-discord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/docs/integrate-discord.md -------------------------------------------------------------------------------- /docs/using-beacon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/docs/using-beacon.md -------------------------------------------------------------------------------- /images/ark-128x128.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/ark-128x128.webp -------------------------------------------------------------------------------- /images/ark-connect-screen.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/ark-connect-screen.webp -------------------------------------------------------------------------------- /images/ark_460x215.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/ark_460x215.webp -------------------------------------------------------------------------------- /images/asa-1920x1080.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/asa-1920x1080.webp -------------------------------------------------------------------------------- /images/beacon-deploy-changes.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/beacon-deploy-changes.webp -------------------------------------------------------------------------------- /images/beacon-finalize-import.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/beacon-finalize-import.webp -------------------------------------------------------------------------------- /images/beacon-game-location.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/beacon-game-location.webp -------------------------------------------------------------------------------- /images/beacon-import-source.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/beacon-import-source.webp -------------------------------------------------------------------------------- /images/beacon-sftp-config.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/beacon-sftp-config.webp -------------------------------------------------------------------------------- /images/beacon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/beacon.svg -------------------------------------------------------------------------------- /images/discord-integration-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/discord-integration-1.png -------------------------------------------------------------------------------- /images/discord-integration-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/discord-integration-2.png -------------------------------------------------------------------------------- /images/discord-integration-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/discord-integration-3.png -------------------------------------------------------------------------------- /images/discord-logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/discord-logo.webp -------------------------------------------------------------------------------- /images/port-forward-on-ubiquiti.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/port-forward-on-ubiquiti.webp -------------------------------------------------------------------------------- /images/server-shutdown-notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/server-shutdown-notice.png -------------------------------------------------------------------------------- /images/ssh-key-powershell.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/ssh-key-powershell.webp -------------------------------------------------------------------------------- /images/ssh-keygen-powershell.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/ssh-keygen-powershell.webp -------------------------------------------------------------------------------- /images/warlock.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/warlock.webp -------------------------------------------------------------------------------- /images/windows-ssh-key.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/windows-ssh-key.webp -------------------------------------------------------------------------------- /images/winscp-step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/winscp-step1.png -------------------------------------------------------------------------------- /images/winscp-step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/winscp-step2.png -------------------------------------------------------------------------------- /images/winscp-step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/winscp-step3.png -------------------------------------------------------------------------------- /images/winscp-step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/images/winscp-step4.png -------------------------------------------------------------------------------- /scripts/ark-override-template.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/scripts/ark-override-template.service -------------------------------------------------------------------------------- /scripts/ark-template.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/scripts/ark-template.service -------------------------------------------------------------------------------- /scripts/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/scripts/backup.sh -------------------------------------------------------------------------------- /scripts/configs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/scripts/configs.yaml -------------------------------------------------------------------------------- /scripts/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/scripts/manage.py -------------------------------------------------------------------------------- /scripts/restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/scripts/restore.sh -------------------------------------------------------------------------------- /scripts/start_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/scripts/start_all.sh -------------------------------------------------------------------------------- /scripts/stop_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/scripts/stop_all.sh -------------------------------------------------------------------------------- /scripts/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/scripts/update.sh -------------------------------------------------------------------------------- /src/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/src/manage.py -------------------------------------------------------------------------------- /src/server-install-debian12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdp1337/ARKSurvivalAscended-Linux/HEAD/src/server-install-debian12.sh --------------------------------------------------------------------------------