forked from DIWHY/photovoter_backend
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
386 B
16 lines
386 B
# use database residing here
|
|
DB_LOCATION = (
|
|
"testbox/photovoter.dblite" # Q: any allowances for this being not OUR database?
|
|
)
|
|
|
|
DATA_LOCATION = "/tmp/123"
|
|
|
|
# place compressed images here (needs to exist)
|
|
DEST_SHRUNK = "image/"
|
|
# move originals here (needs to exist)
|
|
DEST_ORIGINAL = "original/"
|
|
|
|
# upload interface credentials
|
|
CRED_USERNAME = "changeme"
|
|
CRED_PASSWORD = "CHANGEME"
|