@newt-app/templates 0.21.3 → 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.
- package/dist/index.js +3 -4
- 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 +
|
|
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
|
-
|
|
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
|
|