-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommit_all.bat
More file actions
67 lines (56 loc) · 1.97 KB
/
commit_all.bat
File metadata and controls
67 lines (56 loc) · 1.97 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
60
61
62
63
64
65
66
67
@echo off
REM Script pour faire les commits de manière organisée
REM Usage: commit_all.bat
echo.
echo ===================================
echo Phototheque Intelligente - Git Setup
echo ===================================
echo.
REM Commit 1: Configuration
echo [1/9] Configuration et dependencies...
git add config/settings.py .env requirements.txt .gitignore
git commit -m "Initial: Configuration et dependencies"
REM Commit 2: Ingestion
echo [2/9] Module d'ingestion...
git add scripts/ingest.py
git commit -m "Feature: Ingestion images et detection doublons"
REM Commit 3: Métadonnées
echo [3/9] Module métadonnées...
git add scripts/extract_metadata.py
git commit -m "Feature: Extraction metadonnees et EXIF"
REM Commit 4: OCR
echo [4/9] Module OCR...
git add scripts/ocr.py
git commit -m "Feature: OCR et reconnaissance texte"
REM Commit 5: Tagging
echo [5/9] Module tagging...
git add scripts/tag_clip.py
git commit -m "Feature: Tagging automatique avec CLIP"
REM Commit 6: Embeddings et Recherche
echo [6/9] Embeddings et recherche...
git add scripts/embeddings.py scripts/search.py
git commit -m "Feature: Embeddings et moteur de recherche"
REM Commit 7: Interface
echo [7/9] Interface utilisateur...
git add ui/
git commit -m "Feature: Interface Streamlit"
REM Commit 8: Pipeline
echo [8/9] Pipeline principal...
git add main.py scripts/__init__.py ui/__init__.py
git commit -m "Core: Pipeline orchestrateur principal"
REM Commit 9: Documentation
echo [9/9] Documentation et outils...
git add README.md GUIDE_UTILISATION.md INSTALLATION.md tools/
git commit -m "Docs: Documentation et outils"
echo.
echo ===================================
echo Commits crees avec succes!
echo ===================================
echo.
echo Etapes suivantes:
echo 1. Creer un repo sur GitHub: ilyasFardaouix/phototheque_intelligente
echo 2. Executer: git remote add origin https://github.com/ilyasFardaouix/phototheque_intelligente.git
echo 3. Executer: git push -u origin main
echo.
git log --oneline
echo.