-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
59 lines (48 loc) · 1.59 KB
/
.gitignore
File metadata and controls
59 lines (48 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# ===================================================================
# General & System Files
# ===================================================================
# IDE and OS specific files
.vscode/
.idea/
.DS_Store
resonate-backend/Backend-ML/.venv/
# Log files
*.log
# Build and distribution folders
/build
/dist
/out
# ===================================================================
# Frontend (resonate-frontend)
# ===================================================================
# Node dependencies
resonate-frontend/node_modules/
# Next.js build output
resonate-frontend/.next/
# Local environment variables (IMPORTANT FOR SECURITY)
resonate-frontend/.env.local
resonate-frontend/.env
# ===================================================================
# Node.js Backend (resonate-backend/Backend-Node)
# ===================================================================
# Node dependencies
resonate-backend/Backend-Node/node_modules/
# Local environment variables
resonate-backend/Backend-Node/.env
# Bun lockfile
resonate-backend/Backend-Node/bun.lockb
# ===================================================================
# ML Backend (resonate-backend/Backend-ML)
# ===================================================================
# Python virtual environment
resonate-backend/Backend-ML/venv/
resonate-backend/Backend-ML/env/
resonate-backend/Backend-ML/*.egg-info/
resonate-backend/Backend-ML/myenv/
# Python cache
resonate-backend/Backend-ML/__pycache__/
resonate-backend/Backend-ML/**/*.pyc
# Local environment variables
resonate-backend/Backend-ML/.env
# Project Mangement
TODO.txt