mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-03-10 14:13:19 +00:00
27 lines
805 B
TypeScript
27 lines
805 B
TypeScript
import { json } from '@remix-run/node';
|
|
import type { LoaderFunctionArgs } from '@remix-run/node';
|
|
import { execSync } from 'child_process';
|
|
|
|
export async function loader({ request: _request }: LoaderFunctionArgs) {
|
|
try {
|
|
const branch = execSync('git rev-parse --abbrev-ref HEAD').toString().trim();
|
|
const commit = execSync('git rev-parse --short HEAD').toString().trim();
|
|
const lastCommitMessage = execSync('git log -1 --pretty=%B').toString().trim();
|
|
|
|
return json({
|
|
branch,
|
|
commit,
|
|
lastCommitMessage,
|
|
timestamp: new Date().toISOString(),
|
|
});
|
|
} catch (error) {
|
|
return json(
|
|
{
|
|
error: 'Failed to fetch git information',
|
|
details: error instanceof Error ? error.message : 'Unknown error',
|
|
},
|
|
{ status: 500 },
|
|
);
|
|
}
|
|
}
|