Update app.sh

This commit is contained in:
colin 2024-01-19 17:56:27 +00:00
parent d6b755b38a
commit f754da9ea0
1 changed files with 12 additions and 1 deletions

13
app.sh
View File

@ -49,8 +49,19 @@ esac
"port": ${STORAGE_PORT:-6379},
"db": ${STORAGE_DB:-2},
"expire": ${STORAGE_EXPIRE:-2592000}
# Add any additional configurations needed for other storage types
},
"storage": {
"type": "${STORAGE_TYPE:-redis}",
"path": "${STORAGE_PATH:-./data}",
"host": "${STORAGE_HOST:-haste_redis}",
"port": ${STORAGE_PORT:-6379},
"db": ${STORAGE_DB:-2},
"expire": ${STORAGE_EXPIRE:-2592000}
},
"documents": {
"about": "./about.md"
}