mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:21:09 +02:00
feat(landing): add Cloudflare Pages deployment setup
- Add wrangler.toml for all 5 landing pages (chat, picture, manacore, manadeck, zitare)
- Add wrangler CLI as dev dependency
- Add deploy scripts: pnpm deploy:landing:{project} and pnpm deploy:landing:all
- Add Cloudflare helper scripts: cf:login, cf:projects:list, cf:projects:create
- Document Cloudflare Pages setup in CLAUDE.md
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
4cc1ad2c92
commit
ef8fd6a101
8 changed files with 847 additions and 239 deletions
6
apps/chat/apps/landing/wrangler.toml
Normal file
6
apps/chat/apps/landing/wrangler.toml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Cloudflare Pages configuration for Chat Landing
|
||||
# Deployed via GitHub Actions (Direct Upload)
|
||||
|
||||
name = "chat-landing"
|
||||
compatibility_date = "2024-12-01"
|
||||
pages_build_output_dir = "dist"
|
||||
6
apps/manacore/apps/landing/wrangler.toml
Normal file
6
apps/manacore/apps/landing/wrangler.toml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Cloudflare Pages configuration for ManaCore Landing
|
||||
# Deployed via GitHub Actions (Direct Upload)
|
||||
|
||||
name = "manacore-landing"
|
||||
compatibility_date = "2024-12-01"
|
||||
pages_build_output_dir = "dist"
|
||||
6
apps/manadeck/apps/landing/wrangler.toml
Normal file
6
apps/manadeck/apps/landing/wrangler.toml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Cloudflare Pages configuration for ManaDeck Landing
|
||||
# Deployed via GitHub Actions (Direct Upload)
|
||||
|
||||
name = "manadeck-landing"
|
||||
compatibility_date = "2024-12-01"
|
||||
pages_build_output_dir = "dist"
|
||||
6
apps/picture/apps/landing/wrangler.toml
Normal file
6
apps/picture/apps/landing/wrangler.toml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Cloudflare Pages configuration for Picture Landing
|
||||
# Deployed via GitHub Actions (Direct Upload)
|
||||
|
||||
name = "picture-landing"
|
||||
compatibility_date = "2024-12-01"
|
||||
pages_build_output_dir = "dist"
|
||||
6
apps/zitare/apps/landing/wrangler.toml
Normal file
6
apps/zitare/apps/landing/wrangler.toml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Cloudflare Pages configuration for Zitare Landing
|
||||
# Deployed via GitHub Actions (Direct Upload)
|
||||
|
||||
name = "zitare-landing"
|
||||
compatibility_date = "2024-12-01"
|
||||
pages_build_output_dir = "dist"
|
||||
Loading…
Add table
Add a link
Reference in a new issue