2023-02-04 23:04:02 -06:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-02-13 09:59:27 -06:00
|
|
|
# SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 00:31:52 -05:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2023-02-08 02:59:10 -06:00
|
|
|
PORT=$(grep '^port:' /misskey/.config/default.yml | awk 'NR==1{print $2; exit}')
|
2024-05-23 01:19:52 -05:00
|
|
|
curl -Sfso/dev/null "http://localhost:${PORT}/healthz"
|