fix the docker path

This commit is contained in:
Nick Budzban 2024-04-26 23:15:04 -05:00
parent 0844df5b3a
commit 72e5479e8f
2 changed files with 4 additions and 1 deletions

View File

@ -27,7 +27,6 @@ yarn-error.log*
# local env files
.env*.local
.env
# vercel
.vercel

View File

@ -327,4 +327,8 @@ const newSunoApi = async (cookie: string) => {
return await sunoApi.init();
}
if (! process.env.SUNO_COOKIE) {
console.log("Environment does not contain SUNO_COOKIE.", process.env)
}
export const sunoApi = newSunoApi(process.env.SUNO_COOKIE || '');