mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-23 07:46:42 +02:00
feat(quote): integrate Quote app into monorepo
- Add complete Quote app with mobile (Expo), web (SvelteKit), landing (Astro), and backend (NestJS) - Create NestJS backend with Drizzle ORM for PostgreSQL - Add API endpoints for favorites and user lists - Add database schema for favorites and user_lists tables - Update root package.json with quote dev scripts - Add Quote environment variables to generate-env.mjs - Add missing toast.ts store for web app - Configure hybrid content strategy (static + API) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
3a8d6bcf94
commit
ea3285dcbb
285 changed files with 645599 additions and 8 deletions
10
apps/quote/packages/content/src/config/index.ts
Normal file
10
apps/quote/packages/content/src/config/index.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
/**
|
||||
* Quotes App Configuration
|
||||
*/
|
||||
|
||||
import { quotesAppConfig } from '@quote/shared';
|
||||
|
||||
export { quotesAppConfig };
|
||||
|
||||
// Re-export for convenience
|
||||
export default quotesAppConfig;
|
||||
4792
apps/quote/packages/content/src/data/authors/de.ts
Normal file
4792
apps/quote/packages/content/src/data/authors/de.ts
Normal file
File diff suppressed because one or more lines are too long
4819
apps/quote/packages/content/src/data/authors/en.ts
Normal file
4819
apps/quote/packages/content/src/data/authors/en.ts
Normal file
File diff suppressed because one or more lines are too long
11
apps/quote/packages/content/src/data/index.ts
Normal file
11
apps/quote/packages/content/src/data/index.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
* Quotes Data Exports
|
||||
*/
|
||||
|
||||
// Re-export quotes data
|
||||
export { quotesDE } from './quotes/de';
|
||||
export { quotesEN } from './quotes/en';
|
||||
|
||||
// Re-export authors data
|
||||
export { authorsDE } from './authors/de';
|
||||
export { authorsEN } from './authors/en';
|
||||
35020
apps/quote/packages/content/src/data/quotes/de.ts
Normal file
35020
apps/quote/packages/content/src/data/quotes/de.ts
Normal file
File diff suppressed because it is too large
Load diff
35083
apps/quote/packages/content/src/data/quotes/en.ts
Normal file
35083
apps/quote/packages/content/src/data/quotes/en.ts
Normal file
File diff suppressed because it is too large
Load diff
11
apps/quote/packages/content/src/index.ts
Normal file
11
apps/quote/packages/content/src/index.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
* @quote/content-quotes
|
||||
*
|
||||
* Quotes-specific content and configuration
|
||||
*/
|
||||
|
||||
// Export all data
|
||||
export * from './data';
|
||||
|
||||
// Export config
|
||||
export * from './config';
|
||||
Loading…
Add table
Add a link
Reference in a new issue