building out back and front end apis

This commit is contained in:
KS Jannette
2026-02-11 12:00:00 -05:00
parent 0a2eaeb537
commit bf907c900d
5 changed files with 1546 additions and 4 deletions

View File

@@ -1 +1,10 @@
import dotenv from 'dotenv';
dotenv.config({ path: '.secrets' });
const config = {
port: process.env.PORT || 3001,
openaiApiKey: process.env.OPENAI_API_KEY,
};
export default config;