Cross-platform DAW plugin that uploads audio to
registry.houseofmixtape.com and imports stems back into the host DAW.
Skeleton — does not build yet. To build:
1. Clone JUCE next to this repo: git clone https://github.com/juce-framework/JUCE
2. cmake -B build -DJUCE_DIR=../JUCE
3. cmake --build build --target HouseOfMixtape_VST3
Files:
- CMakeLists.txt — juce_add_plugin VST3+AU+Standalone
- Source/PluginProcessor.{h,cpp} — passthrough AudioProcessor
- Source/PluginEditor.{h,cpp} — drag-drop + Upload btn + progress (Paper&Ink dark)
- Source/HomApiClient.{h,cpp} — HTTP skeleton for /api/jobs/* (real wiring deferred)
- README.md — full build instructions + roadmap
This commit is the scaffold checkpoint. Real HTTP wiring + DAW
file-import API integration land in subsequent commits.