diff --git a/progit/default_config.py b/progit/default_config.py index beeced5..526e6a6 100644 --- a/progit/default_config.py +++ b/progit/default_config.py @@ -38,6 +38,9 @@ GIT_URL_GIT = 'git://progit.fedorahosted.org' # Number of items displayed per page ITEM_PER_PAGE = 50 +# Maximum size of the uploaded content +MAX_CONTENT_LENGTH = 4 * 1024 * 1024 # 4 megabytes + # Folder containing to the git repos GIT_FOLDER = os.path.join( os.path.abspath(os.path.dirname(__file__)),