This commit is contained in:
dal 2025-07-18 14:32:12 -06:00
parent e8cd5473eb
commit 584dd215c3
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
5 changed files with 3 additions and 9 deletions

View File

@ -0,0 +1 @@
DAYTONA_API_KEY=

View File

@ -2,7 +2,7 @@ declare global {
namespace NodeJS {
interface ProcessEnv {
NODE_ENV?: 'development' | 'production' | 'test';
// Add your environment variables here
DAYTONA_API_KEY?: string;
}
}
}

View File

@ -10,9 +10,7 @@ console.info('🔍 Validating environment variables...');
const env = {
NODE_ENV: process.env.NODE_ENV || 'development',
// Add your required environment variables here
// DATABASE_URL: process.env.DATABASE_URL,
// API_KEY: process.env.API_KEY,
DAYTONA_API_KEY: process.env.DAYTONA_API_KEY,
};
let hasErrors = false;

View File

@ -1 +0,0 @@
export * from './lib/index';

View File

@ -1,4 +0,0 @@
// Export your library functions here
export const howdy = () => {
return 'Hello from @buster/sandbox!';
};