-
Notifications
You must be signed in to change notification settings - Fork 798
Description
6sense-holy-version-intro/
├─ .github/
│ ├─ workflows/
│ │ ├─ ci.yml # build & lint
│ │ ├─ build_and_release.yml # build visual+audio, create release artifact
│ │ └─ pages-deploy.yml # deploy site to GitHub Pages
│ ├─ ISSUE_TEMPLATE/
│ │ ├─ feature.yml # feature request form (adapted)
│ │ ├─ bug_report.yml # bug report form
│ │ └─ support.yml # support / question form
│ ├─ pull_request_template.md
│ └─ FUNDING.yml
├─ public/ # static assets for Vite / GH Pages
│ ├─ intro_visual.mp4
│ └─ intro_audio.mp3
├─ src/
│ ├─ css/
│ │ └─ style.css
│ ├─ js/
│ │ ├─ main.js
│ │ └─ intro.js
│ └─ translations/
│ ├─ ms.json
│ └─ en.json
├─ scripts/
│ ├─ generate_audio.py # automasi TTS + mix (prototype)
│ ├─ record_intro.js # puppeteer frame capture
│ ├─ record_and_build.sh # wrapper ffmpeg
│ └─ publish_to_github.sh # auto-publish (we made earlier)
├─ tools/
│ └─ audio_presets.json
├─ tests/
│ └─ unit/
├─ README.md
├─ CHANGELOG.md
├─ LICENSE
├─ package.json
├─ vite.config.js
└─ .gitignore