mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 09:16:30 -05:00
feat: add turbo task for "start"
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
cbbfa8c43c
commit
4e497089f2
3 changed files with 8 additions and 1 deletions
|
@ -4,6 +4,7 @@
|
|||
"private": true,
|
||||
"license": "AGPL-3.0",
|
||||
"scripts": {
|
||||
"start:dev": "caddy run || ./caddy run"
|
||||
"start:dev": "caddy run || ./caddy run",
|
||||
"start": "caddy run || ./caddy run"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
"lint": "dotenv -- turbo run lint",
|
||||
"format": "dotenv -- turbo run format",
|
||||
"start:dev": "dotenv -- turbo run start:dev",
|
||||
"start": "dotenv -- turbo run start",
|
||||
"test:ci": "dotenv -- turbo run test:ci",
|
||||
"test": "dotenv -- turbo run test"
|
||||
},
|
||||
|
|
|
@ -106,6 +106,11 @@
|
|||
],
|
||||
"cache": false,
|
||||
"persistent": true
|
||||
},
|
||||
|
||||
"start": {
|
||||
"cache": false,
|
||||
"persistent": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue