Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
working-directory: app

- name: Build executable
run: python build.py --skip-deps --version ${{ steps.get_version.outputs.version }}
run: python scripts/build.py --skip-deps --version ${{ steps.get_version.outputs.version }}

- name: Upload artifact
uses: actions/upload-artifact@v4
Expand Down
Empty file removed 6.0
Empty file.
5 changes: 4 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -427,10 +427,13 @@ PrintQue/
│ ├── pre-commit # Lint staged files
│ └── commit-msg # Validate commit format
├── scripts/ # Build and run scripts
│ ├── build.py # Cross-platform build script (use this)
│ ├── run_app.py # Dev launcher
│ └── ...
├── package.json # Root package (commit tooling)
├── commitlint.config.js # Commit message rules
├── pyproject.toml # Python project config
├── build.py # Cross-platform build script
└── CONTRIBUTING.md # This file
```

Expand Down
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,10 @@ The built files will be in the `app/dist` directory.

```
Printque/
├── scripts/ # Build and run scripts
│ ├── build.py # Main PyInstaller build (use this)
│ ├── run_app.py # Dev launcher
│ └── ...
├── api/ # Python backend
│ ├── app.py # Main Flask application
│ ├── requirements.txt # Python dependencies
Expand Down Expand Up @@ -421,7 +425,7 @@ The easiest way to build is using the cross-platform build script:

```bash
# Build for your current platform
python build.py
python scripts/build.py
```

This will:
Expand All @@ -445,13 +449,13 @@ Examples:

```bash
# Clean build from scratch
python build.py --clean
python scripts/build.py --clean

# Rebuild only the backend (frontend already built)
python build.py --skip-frontend
python scripts/build.py --skip-frontend

# Quick rebuild (dependencies already installed)
python build.py --skip-deps --skip-frontend
python scripts/build.py --skip-deps --skip-frontend
```

### Build Output
Expand All @@ -476,23 +480,23 @@ dist/
#### Windows

```bash
python build.py
python scripts/build.py
# Output: dist/PrintQue.exe
# Launcher: dist/PrintQue_Windows_YYYYMMDD/Start_PrintQue.bat
```

#### macOS

```bash
python build.py
python scripts/build.py
# Output: dist/PrintQue.app
# Launcher: dist/PrintQue_macOS_YYYYMMDD/start_printque.sh
```

#### Linux

```bash
python build.py
python scripts/build.py
# Output: dist/printque
# Launcher: dist/PrintQue_Linux_YYYYMMDD/start_printque.sh
```
Expand Down
105 changes: 0 additions & 105 deletions README.txt

This file was deleted.

Loading