Commit
·
92c6c67
1
Parent(s):
c3bf538
adding the files
Browse files- .gitignore +26 -7
- frontend/.gitignore +0 -24
.gitignore
CHANGED
@@ -1,34 +1,53 @@
|
|
1 |
-
|
|
|
2 |
.env
|
3 |
|
|
|
|
|
4 |
venv/
|
5 |
ai_env/
|
6 |
.venv/
|
7 |
|
|
|
8 |
__pycache__/
|
9 |
*.pyc
|
10 |
*.pyo
|
11 |
*.pyd
|
|
|
12 |
|
|
|
13 |
build/
|
14 |
dist/
|
15 |
*.egg-info/
|
|
|
16 |
|
|
|
|
|
17 |
frontend/node_modules/
|
18 |
-
|
19 |
frontend/dist/
|
20 |
-
|
21 |
frontend/npm-debug.log*
|
22 |
frontend/yarn-debug.log*
|
23 |
frontend/yarn-error.log*
|
|
|
|
|
24 |
|
25 |
-
|
|
|
26 |
.vscode/
|
27 |
-
|
28 |
.DS_Store
|
29 |
|
30 |
-
|
|
|
31 |
data/
|
|
|
32 |
mlruns/
|
|
|
|
|
33 |
|
34 |
-
|
|
|
|
|
|
|
|
1 |
+
# --- Secrets ---
|
2 |
+
# This is the most important line. Never commit your environment variables.
|
3 |
.env
|
4 |
|
5 |
+
# --- Python / Backend ---
|
6 |
+
# Virtual environment folder (if you create one locally)
|
7 |
venv/
|
8 |
ai_env/
|
9 |
.venv/
|
10 |
|
11 |
+
# Python cache files and artifacts
|
12 |
__pycache__/
|
13 |
*.pyc
|
14 |
*.pyo
|
15 |
*.pyd
|
16 |
+
.pytest_cache/
|
17 |
|
18 |
+
# Build and distribution artifacts
|
19 |
build/
|
20 |
dist/
|
21 |
*.egg-info/
|
22 |
+
*.egg
|
23 |
|
24 |
+
# --- Node.js / Frontend ---
|
25 |
+
# The massive folder of downloaded packages
|
26 |
frontend/node_modules/
|
27 |
+
# Build output from 'npm run build'
|
28 |
frontend/dist/
|
29 |
+
# Log files
|
30 |
frontend/npm-debug.log*
|
31 |
frontend/yarn-debug.log*
|
32 |
frontend/yarn-error.log*
|
33 |
+
# Vite cache
|
34 |
+
frontend/.vite/
|
35 |
|
36 |
+
# --- IDE / Editor / OS Files ---
|
37 |
+
# VS Code
|
38 |
.vscode/
|
39 |
+
# macOS
|
40 |
.DS_Store
|
41 |
|
42 |
+
# --- Data & ML Artifacts (Generated Files) ---
|
43 |
+
# The local CSV files generated by your feature engineering pipeline
|
44 |
data/
|
45 |
+
# The local directory where ML models are saved
|
46 |
mlruns/
|
47 |
+
# The manually downloaded ML models that get copied into the Docker image
|
48 |
+
ml_models/
|
49 |
|
50 |
+
# --- Temporary Files ---
|
51 |
+
# Any temporary download scripts
|
52 |
+
tmp_download.py
|
53 |
+
tmp_down.py
|
frontend/.gitignore
DELETED
@@ -1,24 +0,0 @@
|
|
1 |
-
# Logs
|
2 |
-
logs
|
3 |
-
*.log
|
4 |
-
npm-debug.log*
|
5 |
-
yarn-debug.log*
|
6 |
-
yarn-error.log*
|
7 |
-
pnpm-debug.log*
|
8 |
-
lerna-debug.log*
|
9 |
-
|
10 |
-
node_modules
|
11 |
-
dist
|
12 |
-
dist-ssr
|
13 |
-
*.local
|
14 |
-
|
15 |
-
# Editor directories and files
|
16 |
-
.vscode/*
|
17 |
-
!.vscode/extensions.json
|
18 |
-
.idea
|
19 |
-
.DS_Store
|
20 |
-
*.suo
|
21 |
-
*.ntvs*
|
22 |
-
*.njsproj
|
23 |
-
*.sln
|
24 |
-
*.sw?
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|