Skip to content

Commit 9f4530a

Browse files
committed
chore: wip
1 parent 108a006 commit 9f4530a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ It’s incredibly easy to get started with this framework. Simply run the follow
3535
```bash
3636
curl -Ssf stacksjs.org/install | sh # wip
3737

38-
# alternatively, if Bun >= v1.1.19 is installed already,
38+
# alternatively, if Bun >= v1.1.20 is installed already,
3939
# you may also get started via:
4040
bunx stacks new my-project
4141
```

config/app.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ export default {
1818
key: env.APP_KEY,
1919

2020
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,
2223

2324
timezone: 'America/Los_Angeles',
2425
locale: 'en',

pkgx.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
# https://stacksjs.org/docs/dependency-management
1010

1111
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
1414
dns.lookup.dog: ^0.1.0
1515
info-zip.org/zip: ^3.0
1616
info-zip.org/unzip: ^6.0

storage/framework/core/buddy/src/commands/make.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,12 +327,11 @@ export function make(buddy: CLI) {
327327
log.debug('Running `buddy make:certificate` ...', options)
328328

329329
const domain = await localUrl()
330-
log.info(`Creating SSL certificate...`)
331330

331+
log.info(`Creating SSL certificate...`)
332332
await runCommand(`tlsx ${domain}`, {
333333
cwd: p.projectStoragePath('keys'),
334334
})
335-
336335
log.success('Certificate created')
337336

338337
log.info(`Installing SSL certificate...`)

0 commit comments

Comments
 (0)