mirror of
https://github.com/logos-co/logos-web.git
synced 2026-08-27 12:11:14 +00:00
* docs: add page-copy single-source spec and implementation plan * feat(content): add typed home section schemas and migrate home copy into content Add 7 bespoke home* section schemas (+ techStack ctas) to the page section union and populate content/pages/en/home.json with home copy moved verbatim from messages. * refactor(web): source home page copy from @repo/content; drop home namespace from messages Feed every home section from content via findSection/data props (replacing next-intl getTranslations), remove the home namespace from messages/en.json, and add a regression guard plus content-based tests. Render output unchanged. * docs: add get-started/movement page-copy dedup spec and plan * feat(content): add get-started & movement section schemas and content docs Move get-started/movement page copy verbatim into content/pages so it is single-sourced in @repo/content. * refactor(web): source get-started/movement copy from content; drop those namespaces from messages Feed both pages from content via findSection/data props (replacing next-intl), switch them to content-based metadata, delete pages.getStarted/movement from messages, and add content-based tests + ownership guard. Render unchanged. * docs: add navbar-pages CMS copy spec and plan * feat(content): add navbar page section schemas + Pages docs (book, brand-kit, research, node-programme, lambda-prize, manifesto, media, podcast, broadcast, tech-stack explorer) * refactor(web): source navbar pages copy from content; drop those namespaces from messages Migrate book, brand-kit, research (incl. rich-text via a tagged-text renderer), node-programme, lambda-prize, manifesto, media, podcast, logos-broadcast-network, and the tech-stack explorer to read copy from content via findSection/data props and content-based metadata; remove the migrated pages.* namespaces from messages; update guards + contracts. Render output unchanged. * feat(web): source activist/coalition pages copy from content (CMS title/description) Migrate activistBuilder, activistLeaderSteward, and coalitionPartner page metadata from next-intl messages.pages.* into @repo/content PageCopy JSON, following the established bookCopy pattern. - Add activistBuilderCopySectionSchema, activistLeaderStewardCopySectionSchema, coalitionPartnerCopySectionSchema to packages/content/src/schemas/pages.ts and wire them into the pageSectionSchema discriminated union - Create content/pages/en/activist-builder.json, activist-leader-steward.json, coalition-partner.json with verbatim title/description/heading values from the old messages namespace - Switch all three route pages from createTranslatedPageMetadata to createPageMetadata(ROUTE), removing the NAMESPACE constant - Remove activistBuilder, activistLeaderSteward, coalitionPartner from apps/web/messages/en.json pages object - Add schema parse tests, renderToStaticMarkup page tests, messages ownership guards, and content-route contract entries for all three pages * chore(web): remove dead faq (pages.faq + unused FaqSection components) * fix: remove stale faq links * fix: pass payload env through turbo build * fix: preserve lambda prize support labels * fix: preserve live copy after master rebase * fix: address page copy review feedback * refactor: move design guide copy to content * feat: add schemas for home and page copy sections - Introduced home section schemas including homeSocialProof, homeChoosePath, homeDecide, homeStartBuilding, homeAbout, homeUseCases, and homeBuilderPortal. - Added page copy section schemas such as getStartedCopy, movementCopy, bookCopy, designGuideCopy, activistBuilderCopy, activistLeaderStewardCopy, coalitionPartnerCopy, researchCopy, nodeProgrammeCopy, lambdaPrizeCopy, mediaCopy, podcastCopy, broadcastCopy, and manifestoCopy. - Created shared schema for section keys to maintain consistency across sections. * chore(web): remove dead pages.faq from messages * fix: resolve page copy migration conflicts * fix: source connect form page copy from content * fix: remove duplicated afform page copy exports * fix: stop generating afform page copy exports * fix(cms): require only server actions key * fix(cms): load env files before build validation * fix(cms): make env loader available during build * fix(cms): load next env via require * test(cms): isolate missing env validation * feat: add homepage testnet highlight * fix: restore lambda prize support links
51 lines
2.2 KiB
Bash
51 lines
2.2 KiB
Bash
# =============================================================================
|
|
# Environment for docker-compose.prod.yml — copy to .env.docker at the repo
|
|
# root and fill in real values. NEVER commit the filled-in file.
|
|
#
|
|
# cp apps/cms/.env.docker.example .env.docker
|
|
# docker compose -f docker-compose.prod.yml --env-file .env.docker up -d --build
|
|
# =============================================================================
|
|
|
|
# --- Self-hosted Postgres ----------------------------------------------------
|
|
POSTGRES_USER=logos
|
|
POSTGRES_PASSWORD=change-me-strong-password
|
|
POSTGRES_DB=logos_cms
|
|
|
|
# --- Payload core ------------------------------------------------------------
|
|
# Generate with: openssl rand -hex 32
|
|
PAYLOAD_SECRET=change-me-openssl-rand-hex-32
|
|
|
|
# --- Production build key ----------------------------------------------------
|
|
# Generate with: openssl rand -base64 32
|
|
NEXT_SERVER_ACTIONS_ENCRYPTION_KEY=change-me-openssl-rand-base64-32
|
|
|
|
# --- Public URLs (BAKED INTO THE CLIENT BUNDLE AT BUILD TIME) -----------------
|
|
# Must be the real public origins. Changing these requires a rebuild.
|
|
NEXT_PUBLIC_SERVER_URL=https://cms.logos.co
|
|
NEXT_PUBLIC_WEB_URL=https://logos.co
|
|
|
|
# --- Host port mapping -------------------------------------------------------
|
|
# Host port that maps to the container's :3000. Put a reverse proxy (TLS) in
|
|
# front of this in production.
|
|
CMS_PORT=3001
|
|
|
|
# --- Postgres tuning (optional — defaults shown) -----------------------------
|
|
# PAYLOAD_DB_SCHEMA=payload
|
|
# PAYLOAD_DB_POOL_MAX=10
|
|
# Schema auto-sync on boot. Keep "true" for the first deploy; flip to "false"
|
|
# once SQL migrations are wired up so prod no longer mutates schema on boot.
|
|
# PAYLOAD_DB_PUSH=true
|
|
|
|
# Seed/refresh the CMS database from git content/ on every container boot.
|
|
# Defaults to true. Set to "false" once editors manage content directly in
|
|
# Admin and you don't want git content overwriting their changes on each boot.
|
|
# CMS_SYNC_ON_BOOT=true
|
|
|
|
# --- GitHub "Create PR" workflow (optional admin feature) --------------------
|
|
GITHUB_OWNER=logos-co
|
|
GITHUB_REPO=logos-web
|
|
GITHUB_APP_ID=123456
|
|
GITHUB_APP_PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----\n...\n-----END RSA PRIVATE KEY-----"
|
|
GITHUB_INSTALLATION_ID=12345678
|
|
GITHUB_PR_BASE_BRANCH=develop
|