Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
360 B
Plaintext
12 lines
360 B
Plaintext
# Template SaaS Frontend Configuration
|
|
# Copy this file to .env and adjust values
|
|
|
|
# API URL (proxied in development)
|
|
VITE_API_URL=/api/v1
|
|
|
|
# Tenant ID (for development - in production, extracted from subdomain)
|
|
VITE_TENANT_ID=default-tenant
|
|
|
|
# Stripe publishable key (for client-side Stripe.js)
|
|
VITE_STRIPE_PUBLISHABLE_KEY=pk_test_your_stripe_publishable_key
|