This repository was archived by the owner on Aug 5, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,6 @@ nvm use 18
25
25
yarn setup
26
26
```
27
27
28
- - start azurite in a terminal
29
-
30
- ``` bash
31
- yarn azurite
32
- ```
33
-
34
28
- start a local instance using azurite
35
29
36
30
``` bash
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env zx
2
+ import 'zx/globals'
1
3
import dotenv from "dotenv"
2
4
import { expand } from "dotenv-expand"
3
5
import { networkInterfaces } from "os"
@@ -50,7 +52,7 @@ else if (!azure) {
50
52
expand ( out )
51
53
52
54
if ( ! azure ) {
53
- console . log ( "- make sure to launch azurite with `yarn azurite`" )
55
+ $ `yarn azurite`
54
56
console . log (
55
57
`- Visual Studio Code connection string:
56
58
Original file line number Diff line number Diff line change 19
19
"start" : " node dist/src/index.js" ,
20
20
"azurite" : " azurite --location ./.azurite" ,
21
21
"azurite:dbg" : " azurite --location ./.azurite --debug ./.azurite/debug.log" ,
22
- "dev" : " yarn build && node dev.mjs --local" ,
23
- "dev:azure" : " yarn build && node dev.mjs --azure" ,
22
+ "dev" : " yarn build && zx dev.mjs --local" ,
23
+ "dev:azure" : " yarn build && zx dev.mjs --azure" ,
24
24
"logs" : " node infra/logs.mjs" ,
25
25
"deploy" : " node infra/zipdeploy.mjs"
26
26
},
You can’t perform that action at this time.
0 commit comments