Skip to content

Commit fb048d5

Browse files
committed
chore: wip
1 parent ec1babd commit fb048d5

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

config/docs.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ const sidebar = {
146146
{ text: 'HTTP', link: '/guide/buddy/http' },
147147
{ text: 'DNS', link: '/guide/buddy/dns' },
148148
{ text: 'Key', link: '/guide/buddy/key' },
149+
{ text: 'Projects', link: '/guide/buddy/projects' }, // includes `buddy cd`
149150
{ text: 'Domains', link: '/guide/buddy/domains' },
150151
{ text: 'Generate', link: '/guide/buddy/generate' },
151152
{ text: 'Test', link: '/guide/buddy/test' },

storage/framework/dashboard/src/functions/envReader.ts renamed to storage/framework/dashboard/src/functions/env-reader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { path as p } from '@stacksjs/path'
22

33
export function useEnvReader() {
44
async function read(): Promise<string> {
5-
const file = Bun.file(p.projectPath('./.env'))
5+
const file = Bun.file(p.projectPath('.env'))
66

77
const output = await file.text()
88

storage/framework/server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ WORKDIR /tmp
55
COPY ./runtime.ts ./runtime.ts
66
COPY ./index.ts ./index.ts
77

8-
RUN bun add aws4fetch @stacksjs/cloud
8+
RUN bun add aws4fetch
99
RUN bun build --compile runtime.ts --outfile bootstrap
1010
# TODO: remove the --external @stacksjs/cloud
1111
RUN bun build --target=bun index.ts --outfile index --external @stacksjs/cloud

0 commit comments

Comments
 (0)