added ai interface

This commit is contained in:
Harivansh Rathi 2024-12-06 01:19:25 -05:00
parent 39e3a77c08
commit 8dda9a8d1a
2 changed files with 17 additions and 0 deletions

9
.env.example Normal file
View file

@ -0,0 +1,9 @@
# Supabase Configuration
VITE_SUPABASE_URL=your_supabase_url_here
VITE_SUPABASE_ANON_KEY=your_supabase_anon_key_here
# OpenAI Configuration
VITE_OPENAI_API_KEY=your_openai_api_key_here
# Note: Replace the above placeholder values with your actual API keys
# Do not commit the actual .env file to version control

8
.gitignore vendored
View file

@ -22,3 +22,11 @@ dist-ssr
*.njsproj
*.sln
*.sw?
# Environment files
.env
.env.local
.env.development
.env.production
.env.*;
!.env.example