Add proper shebangs and block comments

This commit is contained in:
2020-09-04 10:47:20 -05:00
parent 565a91e4ec
commit 9d9b93a9ee
4 changed files with 25 additions and 0 deletions

@ -1,3 +1,10 @@
#!/usr/bin/env python3
"""
settings.py
User-defined settings used by imgupload.py.
"""
UPLOAD_FOLDER = "/path/to/images"
ALLOWED_EXTENSIONS = [".png", ".jpg", ".jpeg", ".svg", ".bmp", ".gif", ".ico", ".webp"]
ROOTURL = "https://example.com/"