immortalindeed commited on
Commit
42e224c
·
1 Parent(s): f9210d7

Final cleanup: Organize files, remove redundant assets, and update manifest

Browse files
Files changed (2) hide show
  1. file_manifest.md +6 -3
  2. src/__init__.py +0 -7
file_manifest.md CHANGED
@@ -21,7 +21,10 @@ This document explains the purpose and importance of each file in the FocusFlow
21
  - **`run.bat`**: The "One-Click" launcher for Windows users.
22
  - **`build_cpp.bat`**: A utility to re-compile the C++ module if you make changes to the C++ source code.
23
  - **`setup.py`**: The "bridge" script used by Python to compile the C++ code.
24
- - **`.gitignore`**: Tells Git which files to ignore (like the virtual environment or temporary cache).
 
 
25
 
26
- ## Data & Logs
27
- - **`data/focus_flow.db`**: The local database file where all your session history is stored securely.
 
 
21
  - **`run.bat`**: The "One-Click" launcher for Windows users.
22
  - **`build_cpp.bat`**: A utility to re-compile the C++ module if you make changes to the C++ source code.
23
  - **`setup.py`**: The "bridge" script used by Python to compile the C++ code.
24
+ - **`Dockerfile`**: Container configuration for cloud deployment (Hugging Face).
25
+ - **`deployment_guide.md`**: Detailed steps for deploying the app to the cloud for free.
26
+ - **`.gitignore`**: Tells Git which files to ignore.
27
 
28
+ ## Data & Utilities
29
+ - **`data/focus_flow.db`**: The local database file where all your session history is stored.
30
+ - **`src/utils/reset_db.py`**: A utility script to reset or clean the database history.
src/__init__.py DELETED
@@ -1,7 +0,0 @@
1
- """
2
- FocusFlow: Real-Time Meeting Engagement Analytics
3
- A portfolio project demonstrating Computer Vision, Product Sense, and C++ Integration
4
- """
5
-
6
- __version__ = "1.0.0"
7
- __author__ = "Kush Chhunchha"