Add quick start guide for batch processing workflow#79
Open
jewzaam wants to merge 3 commits into
Open
Conversation
Documents the three-phase workflow (prepare-for-blink, blink review, post-blink) with template Windows batch scripts. Introduces a per-rig configuration pattern using separate .bat files so rig-specific paths and culling thresholds are isolated from the shared pipeline scripts. https://claude.ai/code/session_01KSYcbGLfeCyxK2J8hQE9fF
Extract the inline batch script examples from quick-start.md into standalone .bat files under templates/ so they can be copied and customized directly. The quick start guide now links to the template files instead of embedding the full script contents. templates/ ├── config.bat # Shared paths and settings ├── rigs/ │ ├── example-rig1.bat # Longer FL rig example │ └── example-rig2.bat # Shorter FL rig example ├── 01-prepare-for-blink.bat └── 02-post-blink.bat https://claude.ai/code/session_01KSYcbGLfeCyxK2J8hQE9fF
Adding the templates/ directory caused setuptools to find multiple top-level packages (standards, templates) and refuse to build. Explicitly set packages=[] since ap-base has no Python packages. https://claude.ai/code/session_01KSYcbGLfeCyxK2J8hQE9fF
de6a7d8 to
ffc8995
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds comprehensive documentation for setting up and running the astrophotography processing pipeline using Windows batch scripts. The new quick start guide provides step-by-step instructions for configuring and executing the three-phase workflow.
Key Changes
New Quick Start Guide (
docs/quick-start.md): Complete walkthrough covering:Updated Documentation Index (
docs/index.md): Added link to the new quick start guideUpdated README (
README.md): Added reference to quick start guide in documentation sectionNotable Details
The guide includes:
https://claude.ai/code/session_01KSYcbGLfeCyxK2J8hQE9fF