Skip to content

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbbreuer committed Feb 13, 2024
1 parent 2b8a715 commit 9404456
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion storage/framework/core/actions/src/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class Action {
handle: () => Promise<any>

constructor({ name, description, handle, rate, tries, backoff, enabled }: ActionOptions) {
log.info(`Action ${name} created`)
// log.debug(`Action ${name} created`) // TODO

this.name = name
this.description = description
Expand Down
2 changes: 1 addition & 1 deletion storage/framework/core/cloud/src/cloud/compute.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export class ComputeStack {
port: 3000,
healthCheck: {
interval: Duration.seconds(6),
path: '/api/health',
path: '/api/healthy',
protocol: elbv2.Protocol.HTTP,
timeout: Duration.seconds(5),
healthyThresholdCount: 2,
Expand Down
1 change: 1 addition & 0 deletions storage/framework/core/path/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,7 @@ export function paymentsPath(path?: string) {
return corePath(`payments/${path || ''}`)
}

// all paths ultimately build on the projectPath
export function projectPath(filePath = '') {
let path = process.cwd()

Expand Down
10 changes: 5 additions & 5 deletions storage/framework/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
"build": "bun build.ts"
},
"dependencies": {
"@stacksjs/logging": "^0.58.64",
"@stacksjs/queue": "^0.58.64",
"@stacksjs/router": "^0.58.64",
"@stacksjs/storage": "^0.58.64",
"@stacksjs/utils": "^0.58.64",
"@stacksjs/logging": "^0.58.65",
"@stacksjs/queue": "^0.58.65",
"@stacksjs/router": "^0.58.65",
"@stacksjs/storage": "^0.58.65",
"@stacksjs/utils": "^0.58.65",
"aws4fetch": "^1.0.17"
}
}

0 comments on commit 9404456

Please sign in to comment.