f2d35ca792
- JWT secret auto-generates and persists to <STORAGE_PATH>/.jwt_secret - Remove setup token: first admin setup is open until system initialized - Fix schema.sql: move CREATE EXTENSION pg_trgm/ltree to top - Update login UI and auth.js to remove setup token fields
9 lines
181 B
Bash
Executable File
9 lines
181 B
Bash
Executable File
while IFS= read -r -d '' file; do
|
|
if grep -Iq . "$file"; then
|
|
echo "===== $file ====="
|
|
cat "$file"
|
|
echo -e "\n"
|
|
fi
|
|
done < <(find . -type f -print0)
|
|
|