Add psql version to info page

This commit is contained in:
syuilo 2019-06-20 22:52:35 +09:00
parent 33d79420eb
commit 2c1932faa7
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
2 changed files with 5 additions and 0 deletions

View file

@ -20,6 +20,7 @@ import { Users, Notes, Emojis, UserProfiles, Pages } from '../../models';
import parseAcct from '../../misc/acct/parse';
import getNoteSummary from '../../misc/get-note-summary';
import { ensure } from '../../prelude/ensure';
import { getConnection } from 'typeorm';
const client = `${__dirname}/../../client/`;
@ -250,6 +251,7 @@ router.get('/info', async ctx => {
machine: os.hostname(),
os: os.platform(),
node: process.version,
psql: await getConnection().query('SHOW server_version').then(x => x[0].server_version),
cpu: {
model: os.cpus()[0].model,
cores: os.cpus().length

View file

@ -85,6 +85,9 @@ html
tr
th Node version
td= node
tr
th PSQL version
td= psql
tr
th Machine
td= machine