File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
storage/framework/core/buddy/src/commands Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ It’s incredibly easy to get started with this framework. Simply run the follow
35
35
``` bash
36
36
curl -Ssf stacksjs.org/install | sh # wip
37
37
38
- # alternatively, if Bun >= v1.1.19 is installed already,
38
+ # alternatively, if Bun >= v1.1.20 is installed already,
39
39
# you may also get started via:
40
40
bunx stacks new my-project
41
41
```
Original file line number Diff line number Diff line change @@ -18,7 +18,8 @@ export default {
18
18
key : env . APP_KEY ,
19
19
20
20
maintenanceMode : env . APP_MAINTENANCE || false ,
21
- docMode : true , // instead of example.com/docs, deploys example.com as main entry point for docs
21
+ // docMode: true, // instead of example.com/docs, deploys example.com as main entry point for docs
22
+ docMode : false ,
22
23
23
24
timezone : 'America/Los_Angeles' ,
24
25
locale : 'en' ,
Original file line number Diff line number Diff line change 9
9
# https://stacksjs.org/docs/dependency-management
10
10
11
11
dependencies :
12
- bun.sh : ^1.1.16
13
- aws.amazon.com/cli : ^2.15.30
12
+ bun.sh : ^1.1.20
13
+ aws.amazon.com/cli : ^2.17.13
14
14
dns.lookup.dog : ^0.1.0
15
15
info-zip.org/zip : ^3.0
16
16
info-zip.org/unzip : ^6.0
Original file line number Diff line number Diff line change @@ -327,12 +327,11 @@ export function make(buddy: CLI) {
327
327
log . debug ( 'Running `buddy make:certificate` ...' , options )
328
328
329
329
const domain = await localUrl ( )
330
- log . info ( `Creating SSL certificate...` )
331
330
331
+ log . info ( `Creating SSL certificate...` )
332
332
await runCommand ( `tlsx ${ domain } ` , {
333
333
cwd : p . projectStoragePath ( 'keys' ) ,
334
334
} )
335
-
336
335
log . success ( 'Certificate created' )
337
336
338
337
log . info ( `Installing SSL certificate...` )
You can’t perform that action at this time.
0 commit comments