Compare commits

..

No commits in common. "4a0136c9a3be7ea82264f96c97c1466f73388fcc" and "d85637afcb76a9aed34fa1cf9408ae1af1fb0dab" have entirely different histories.

3 changed files with 1 additions and 3 deletions

View File

@ -1 +0,0 @@
UPLOAD_ONLY=1 # Enable upload only for the instance

1
.gitignore vendored
View File

@ -1,4 +1,3 @@
__pycache__
upload
env
.env

View File

@ -11,7 +11,7 @@ from pydantic_settings import BaseSettings, SettingsConfigDict
# Settings
class Settings(BaseSettings):
upload_only: bool = False
upload_only: bool = True
model_config = SettingsConfigDict(env_file=".env")