Add temporary git logging

This commit is contained in:
Sam Becker 2025-02-16 10:24:50 -06:00
parent 12cf156af3
commit 0656ef778b
2 changed files with 3 additions and 0 deletions

View File

@ -64,6 +64,8 @@ export default async function AdminAppInsights() {
hasVercelBlobStorage,
} = APP_CONFIGURATION;
console.log('codeMeta', { codeMeta });
return (
<AdminAppInsightsClient
codeMeta={codeMeta}

View File

@ -92,6 +92,7 @@ export const getLatestBaseRepoCommitSha = async () => {
const getIsRepoForkedFromBase = async (params: RepoParams) => {
const response = await fetch(getGitHubApiRepoUrl(params), FETCH_CONFIG);
const data = await response.json();
console.log('getIsRepoForkedFromBase', { data });
return (
Boolean(data.fork) &&
data.source?.full_name === `${TEMPLATE_REPO_OWNER}/${TEMPLATE_REPO_NAME}`