90e0086cf1
- 15 new modules with 2000-3000 char markdown content - 1 quiz question per module with explanation - audioPath set to .m4a for all 15 modules (TTS-ready) - Added local TTS generation script (scripts/generate-tts-local.js) - Added .gitignore for generated audio files - Total: 7 courses, 32 modules in seed-learn.json Note: Audio files are generated locally via generate-tts-local.js. They are excluded from git (see .gitignore) due to large binary size. For production MP3s, use Azure/ElevenLabs via Gitea's generate-audio.py.
47 lines
635 B
Plaintext
47 lines
635 B
Plaintext
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# dependencies
|
|
/node_modules
|
|
/.pnp
|
|
.pnp.*
|
|
.yarn/*
|
|
!.yarn/patches
|
|
!.yarn/plugins
|
|
!.yarn/releases
|
|
!.yarn/versions
|
|
|
|
# testing
|
|
/coverage
|
|
|
|
# next.js
|
|
/.next/
|
|
/out/
|
|
|
|
# production
|
|
/build
|
|
|
|
# misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# env files (can opt-in for committing if needed)
|
|
.env*
|
|
|
|
# vercel
|
|
.vercel
|
|
|
|
# typescript
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
.gstack/
|
|
|
|
# generated TTS audio (large binary files — run scripts/generate-tts-local.js locally)
|
|
public/audio/learn/**/*.m4a
|
|
public/audio/learn/**/*.wav
|