We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 441eab6 commit 98befcbCopy full SHA for 98befcb
adminforth/commands/createApp/templates/.env.local.hbs
@@ -1,6 +1,6 @@
1
ADMINFORTH_SECRET=123
2
NODE_ENV=development
3
-DATABASE_URL={{dbUrl}}
+DATABASE_URL={{{dbUrl}}}
4
{{#if prismaDbUrl}}
5
-PRISMA_DATABASE_URL={{prismaDbUrl}}
+PRISMA_DATABASE_URL={{{prismaDbUrl}}}
6
{{/if}}
adminforth/documentation/docs/tutorial/001-gettingStarted.md
@@ -22,7 +22,7 @@ The recommended way to get started with AdminForth is via the **`create-app`** C
22
You can provide options directorly:
23
24
```bash
25
-npx adminforth create-app --app-name myadmin --db sqlite://.db.sqlite
+npx adminforth create-app --app-name myadmin --db "sqlite://.db.sqlite"
26
```
27
28
Or omit them to be prompted interactively:
0 commit comments