Skip to content

Commit 98befcb

Browse files
committed
fix: disable Handlebars escaping for URLs
1 parent 441eab6 commit 98befcb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ADMINFORTH_SECRET=123
22
NODE_ENV=development
3-
DATABASE_URL={{dbUrl}}
3+
DATABASE_URL={{{dbUrl}}}
44
{{#if prismaDbUrl}}
5-
PRISMA_DATABASE_URL={{prismaDbUrl}}
5+
PRISMA_DATABASE_URL={{{prismaDbUrl}}}
66
{{/if}}

adminforth/documentation/docs/tutorial/001-gettingStarted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The recommended way to get started with AdminForth is via the **`create-app`** C
2222
You can provide options directorly:
2323

2424
```bash
25-
npx adminforth create-app --app-name myadmin --db sqlite://.db.sqlite
25+
npx adminforth create-app --app-name myadmin --db "sqlite://.db.sqlite"
2626
```
2727

2828
Or omit them to be prompted interactively:

0 commit comments

Comments
 (0)