Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@agusmakmun
Created February 28, 2018 06:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agusmakmun/67a1c9f07ddbd0bd817c2cd06b9c9bad to your computer and use it in GitHub Desktop.
Save agusmakmun/67a1c9f07ddbd0bd817c2cd06b9c9bad to your computer and use it in GitHub Desktop.
# Maximum Upload Image
# 2.5MB - 2621440
# 5MB - 5242880
# 10MB - 10485760
# 20MB - 20971520
# 50MB - 5242880
# 100MB 104857600
# 250MB - 214958080
# 500MB - 429916160
MAXIMUM_UPLOAD_DOCUMENT_SIZE = 5242880 # 5MB
ALLOWED_UPLOAD_DOCUMENT_EXTENSIONS = [
'application/msword', # doc
'application/vnd.openxmlformats-officedocument.wordprocessingml.document', # docx
'application/vnd.oasis.opendocument.text', # odt
'application/pdf', # pdf
]
# Example ugage:
- https://github.com/agusmakmun/django-markdown-editor/wiki
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment