Created
February 28, 2018 06:32
-
-
Save agusmakmun/67a1c9f07ddbd0bd817c2cd06b9c9bad to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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