Add info for how to setup the server for selfhosting

This commit is contained in:
2025-08-20 14:30:51 -07:00
parent a4d5d1207c
commit f9eee4ab29
2 changed files with 32 additions and 1 deletions

6
genkeys.py Normal file
View File

@@ -0,0 +1,6 @@
import os
keys_needed = ["SERVER_RECEIVE_TRANSFER_KEY", "SERVER_SEND_TRANSFER_KEY", "BAZOOKA_MANAGER_KEY", "BAZOOKA_MANAGER_FILE_KEY"]
for key_needed in keys_needed:
print("Key for \"" + key_needed + "\": " + os.urandom(16).hex())