Optimized layout and code for building
This commit is contained in:
@@ -11,6 +11,7 @@ A Python-based GUI application for GitHub automation workflows.
|
||||
- **Python 3.8+** installed on your system
|
||||
- **Git** installed and configured
|
||||
- **GitHub** account with repository access
|
||||
- **libmpv** installed on your system (Linux)
|
||||
|
||||
### Installation
|
||||
|
||||
@@ -38,7 +39,23 @@ A Python-based GUI application for GitHub automation workflows.
|
||||
3. **Install Dependencies**
|
||||
|
||||
```bash
|
||||
pip install -r requirements.txt
|
||||
# For all production dependencies
|
||||
pip install -r requirements/requirements.txt
|
||||
```
|
||||
|
||||
```bash
|
||||
# For dev dependencies
|
||||
pip install -r requirements/requirements-dev.txt
|
||||
```
|
||||
|
||||
```bash
|
||||
# For ai dependencies
|
||||
pip install -r requirements/requirements-ai.txt
|
||||
```
|
||||
|
||||
```bash
|
||||
# For base dependencies
|
||||
pip install -r requirements/requirements-base.txt
|
||||
```
|
||||
|
||||
4. **Run the Application**
|
||||
@@ -80,11 +97,16 @@ The project is organized as follows:
|
||||
```text
|
||||
github_pulse/
|
||||
├── src/ # Main application directory
|
||||
│ ├── app.py # Application entry point
|
||||
│ ├── main.py # Application entry point
|
||||
│ ├── requirements.txt # Python dependencies
|
||||
│ ├── assets # Images for build
|
||||
│ ├── assets/ # Images for build
|
||||
│ │ ├── icon.png # Application icon
|
||||
│ │ └── splash_android.png # Splash screen image
|
||||
│ ├── requirements/
|
||||
│ │ ├── requirements-dev.txt # Development dependencies
|
||||
│ │ ├── requirements-ai.txt # AI dependencies
|
||||
│ │ ├── requirements.txt # Production dependencies
|
||||
│ │ └── requirements-base.txt # Base dependencies
|
||||
│ └── app_components/ # Application modules
|
||||
│ ├── assets/ # Images and assets
|
||||
│ │ ├── flow-diagram.png # Workflow diagram
|
||||
|
||||
Reference in New Issue
Block a user