- Settings: smtpHost/Port/User/Pass(cifrata)/Secure/From. Vuoto -> provider default dell'app (env); compilato -> invio dal SMTP del merchant. - crypto.server: encrypt/decrypt AES-256-GCM (chiave APP_ENCRYPTION_KEY). - mailer: SmtpConfig + buildTransport(smtp) per-shop o env; mailFrom override. Sia ricevuta cliente sia notifica merchant usano lo SMTP del merchant. - proxy: costruisce SmtpConfig (decifra pass), passa ai due invii. - admin: nuovo tab 'Email (SMTP)'; password mai ri-mostrata (vuoto = invariata). - Migrazione smtp_settings. APP_ENCRYPTION_KEY: dev in .env, prod = fly secret. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Mv83a29B4eFv5ixoj6PoE1
36 lines
573 B
Plaintext
36 lines
573 B
Plaintext
# Monorepo root: docs (PLAN.md, ANALISI-REQUISITI-LEGALI.md, README.md) + the
|
|
# Shopify app under app/. Deep rules also live in app/.gitignore.
|
|
|
|
# Dependencies
|
|
node_modules
|
|
app/node_modules
|
|
|
|
# Build output
|
|
app/build
|
|
app/public/build
|
|
|
|
# Env / secrets — NEVER commit
|
|
.env
|
|
.env.*
|
|
app/.env
|
|
app/.env.*
|
|
!app/.env.example
|
|
|
|
# Shopify CLI local state
|
|
app/.shopify
|
|
.shopify
|
|
|
|
# Local SQLite (legacy dev DB from the template)
|
|
app/*.sqlite
|
|
app/prisma/*.sqlite*
|
|
**/dev.sqlite*
|
|
|
|
# OS / editor cruft
|
|
.DS_Store
|
|
|
|
# Credenziali locali - MAI committare
|
|
Cred Fly
|
|
*[Cc]red*
|
|
*.secret
|
|
token.txt
|