@newt-app/templates 0.21.2 → 0.21.4

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -151,14 +151,13 @@ var readme_default = {
151
151
  filename: "README.md",
152
152
  template: `# <%= projectName %>
153
153
 
154
- Full-stack monorepo: Next.js 16 + NestJS 11 + better-auth + PostgreSQL.
154
+ Full-stack monorepo: Next.js 16 + NestJS 11 + better-auth + <%= database === 'postgres' ? 'Postgres' : 'SQLite' %>.
155
155
 
156
156
  ## Quick start
157
157
 
158
158
  \`\`\`sh
159
- # optional: set DATABASE_URL in .env for Postgres (defaults to local SQLite)
160
- pnpm install
161
- pnpm db:migrate
159
+ <% if (database === 'postgres') { %># set DATABASE_URL in .env to your Postgres database
160
+ <% } %>pnpm install
162
161
  pnpm dev
163
162
  \`\`\`
164
163
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@newt-app/templates",
3
- "version": "0.21.2",
3
+ "version": "0.21.4",
4
4
  "private": false,
5
5
  "description": "Templates for newt-app",
6
6
  "type": "module",