GitHub(nextgroup2706/ken_nogi)は今後使わず自社Gitea運用に切替え。 NodeSrvは旧リポジトリの履歴を破棄しファイルのみ統合(Dokploy用サービスアカウントは 別途mygit-admin/NodeSrv.gitに履歴あり)。notepmエクスポート(12GB)とPleasanter インストーラzip(208MB)はサイズが大きいため.gitignoreで除外。 Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
18 lines
447 B
JavaScript
18 lines
447 B
JavaScript
const express = require('express');
|
|
|
|
const app = express();
|
|
const PORT = process.env.PORT || 3000;
|
|
|
|
app.get('/', (req, res) => {
|
|
res.json({ app: 'lineworks-board-sync', status: 'ok' });
|
|
});
|
|
|
|
// Dokploy/Traefikのヘルスチェックが叩くエンドポイント
|
|
app.get('/health', (req, res) => {
|
|
res.status(200).json({ status: 'healthy' });
|
|
});
|
|
|
|
app.listen(PORT, () => {
|
|
console.log(`lineworks-board-sync listening on port ${PORT}`);
|
|
});
|