diff --git a/blt/settings.py b/blt/settings.py index 86b0f02b0..a4a3e5747 100644 --- a/blt/settings.py +++ b/blt/settings.py @@ -362,7 +362,7 @@ }, }, } - +DEFAULT_FILE_STORAGE = "django.core.files.storage.FileSystemStorage" USERS_AVATAR_PATH = "avatars" AVATAR_PATH = os.path.join(MEDIA_ROOT, USERS_AVATAR_PATH) @@ -527,4 +527,4 @@ BITCOIN_RPC_USER = os.environ.get("BITCOIN_RPC_USER", "yourusername") BITCOIN_RPC_PASSWORD = os.environ.get("BITCOIN_RPC_PASSWORD", "yourpassword") BITCOIN_RPC_HOST = os.environ.get("BITCOIN_RPC_HOST", "localhost") -BITCOIN_RPC_PORT = os.environ.get("BITCOIN_RPC_PORT", "8332") +BITCOIN_RPC_PORT = os.environ.get("BITCOIN_RPC_PORT", "8332") \ No newline at end of file diff --git a/website/migrations/0125_merge_20240810_0057.py b/website/migrations/0125_merge_20240810_0057.py new file mode 100644 index 000000000..afcce7397 --- /dev/null +++ b/website/migrations/0125_merge_20240810_0057.py @@ -0,0 +1,16 @@ +# Generated by Django 5.1 on 2024-08-09 19:27 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ( + "website", + "0106_remove_blockedip_address_range_and_more_squashed_0107_blockedip_reason_for_block", + ), + ("website", "0124_company_tags_domain_tags_project_tags_and_more"), + ] + + operations = []