Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .gitguardian.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# GitGuardian configuration
# https://docs.gitguardian.com/ggshield-docs/reference/configuration
#
# Silences false positives on LOCAL-DEVELOPMENT placeholder credentials.
# These are not real secrets: they appear only in example/dev/CI config, use
# the fixed literal value below, and connect to localhost.
version: 2

secret:
# Ignore this exact placeholder wherever it appears.
ignored_matches:
- name: "Local dev Postgres placeholder credentials (not a real secret)"
match: "postgresql://openscript:openscript@localhost:5432/openscript"

# Files that only ever contain dev/example/CI placeholders.
ignored_paths:
- "apps/web/.env.example"
- "apps/web/Dockerfile"
- "docker-compose.yml"
- ".github/workflows/bun-ci.yml"
- "**/CONTRIBUTING.md"
5 changes: 4 additions & 1 deletion apps/web/src/site/brand.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
export const SITE_URL = "https://openscript.app";
// Public origin where the app is served. openscript.app is not registered yet,
// so this points at the live Vercel domain. (The editor itself lives under /app
// via BASE_PATH below.)
export const SITE_URL = "https://tryopenscript.vercel.app";

// Keep in sync with `basePath` in next.config.ts. The editor ships as a
// Next.js Multi-Zones "zone" mounted under /app, so its API routes and the
Expand Down
Loading