mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
* Fixed entrypoint writing bad json (from develop) * Fixed a bug where log file could write out a crap ton of information (serializing Series object) when a db error occurs. * Fixed an issue with scan loop where concurrency issues could occur on new series being added. * Tweaked the logger to suppress some noisy logs when using Debug log level. * Fixed a regression with epub parsing from v3.2 of Vers-One's release * Fixed up folder watching to work more reliable. Validated in production. * Code cleanup
14 lines
272 B
Bash
14 lines
272 B
Bash
#! /bin/bash
|
|
|
|
if [ ! -f "/kavita/config/appsettings.json" ]; then
|
|
echo "Kavita configuration file does not exist, creating..."
|
|
echo '{
|
|
"TokenKey": "super secret unguessable key",
|
|
"Port": 5000
|
|
}' >> /kavita/config/appsettings.json
|
|
fi
|
|
|
|
chmod +x Kavita
|
|
|
|
./Kavita
|