create-kyro 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -340,7 +340,7 @@ Visit [https://kyro.dev](https://kyro.dev) for full documentation.
|
|
|
340
340
|
const envExample = `# Kyro CMS Configuration
|
|
341
341
|
# Copy this file to .env and fill in your values
|
|
342
342
|
|
|
343
|
-
${answers.database === "sqlite" ? "# SQLite (local) - no additional config needed" : answers.database === "postgres"
|
|
343
|
+
${answers.database === "sqlite" ? "# SQLite (local) - no additional config needed" : answers.database === "postgres" ? "# Database connection (PostgreSQL)\nDATABASE_URL=postgresql://user:password@localhost:5432/kyro_cms" : "# MongoDB connection\nMONGODB_URI=mongodb://localhost:27017/kyro_cms"}
|
|
344
344
|
|
|
345
345
|
# JWT secret for authentication tokens
|
|
346
346
|
JWT_SECRET=change-this-to-a-random-64-character-string
|