|
| 1 | + |
| 2 | +[]() |
| 3 | +[](LICENSE) |
| 4 | +[]() |
| 5 | +[]() |
| 6 | + |
| 7 | +# PhaelusJam |
| 8 | +**An AI-powered real-time composer & accompanist** |
| 9 | +by **LogicMUSE** |
| 10 | + |
| 11 | +## Interface (DAW-style) |
| 12 | +- **Top bar**: Title *Phaelus Jam by LogicMUSE*, AI On/Off, LED strip (WS, IN, OUT, ENG, LLM) |
| 13 | +- **Tabs**: Front, Configuration, Monitoring, Advanced Logging, Testing |
| 14 | + |
| 15 | +## Run (Web UI) |
| 16 | +```bash |
| 17 | +python -m venv .venv && source .venv/bin/activate # Windows: .venv\Scriptsctivate |
| 18 | +pip install -r requirements.txt |
| 19 | +uvicorn server.main:app --reload |
| 20 | +# open http://127.0.0.1:8000 |
| 21 | +``` |
| 22 | + |
| 23 | +## 🖼 Mockups |
| 24 | +### Current functional look |
| 25 | +_showcase.png) |
| 26 | + |
| 27 | +### Target polished design (Cubase-style plugin) |
| 28 | + |
| 29 | + |
| 30 | +### Tab Previews |
| 31 | +- **Front Panel** |
| 32 | +  |
| 33 | + |
| 34 | +- **Configuration Panel** |
| 35 | +  |
| 36 | + |
| 37 | +- **Monitoring Panel** |
| 38 | +  |
| 39 | + |
| 40 | +- **Advanced Logging Panel** |
| 41 | +  |
| 42 | + |
| 43 | +- **Testing Panel** |
| 44 | +  |
| 45 | + |
| 46 | +## CI |
| 47 | +This repo includes GitHub Actions CI (ruff, black, pytest). Update the build badge after pushing. |
| 48 | + |
| 49 | +## Developer workflow |
| 50 | +### Pre-commit |
| 51 | +```bash |
| 52 | +pip install pre-commit |
| 53 | +pre-commit install |
| 54 | +``` |
| 55 | + |
| 56 | +### Releasing (optional) |
| 57 | +Add PYPI_API_TOKEN secret. Tag and push `v0.1.0` to release. |
0 commit comments