- Getting containers ready for the cloud

This commit is contained in:
Josako
2024-08-06 14:56:12 +02:00
parent 64cf8df3a9
commit ab8359365d
20 changed files with 494 additions and 110 deletions

View File

@@ -0,0 +1,6 @@
from common.utils.simple_encryption import SimpleEncryption
if __name__ == "__main__":
key = SimpleEncryption.generate_key()
print(f"Generated encryption key: {key}")
print("Set this as your ENCRYPTION_KEY environment variable or in your config.py file.")