File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -146,6 +146,7 @@ const sidebar = {
146
146
{ text : 'HTTP' , link : '/guide/buddy/http' } ,
147
147
{ text : 'DNS' , link : '/guide/buddy/dns' } ,
148
148
{ text : 'Key' , link : '/guide/buddy/key' } ,
149
+ { text : 'Projects' , link : '/guide/buddy/projects' } , // includes `buddy cd`
149
150
{ text : 'Domains' , link : '/guide/buddy/domains' } ,
150
151
{ text : 'Generate' , link : '/guide/buddy/generate' } ,
151
152
{ text : 'Test' , link : '/guide/buddy/test' } ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { path as p } from '@stacksjs/path'
2
2
3
3
export function useEnvReader ( ) {
4
4
async function read ( ) : Promise < string > {
5
- const file = Bun . file ( p . projectPath ( './. env' ) )
5
+ const file = Bun . file ( p . projectPath ( '.env' ) )
6
6
7
7
const output = await file . text ( )
8
8
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ WORKDIR /tmp
5
5
COPY ./runtime.ts ./runtime.ts
6
6
COPY ./index.ts ./index.ts
7
7
8
- RUN bun add aws4fetch @stacksjs/cloud
8
+ RUN bun add aws4fetch
9
9
RUN bun build --compile runtime.ts --outfile bootstrap
10
10
# TODO: remove the --external @stacksjs/cloud
11
11
RUN bun build --target=bun index.ts --outfile index --external @stacksjs/cloud
You can’t perform that action at this time.
0 commit comments