Skip to content

Commit b1ee591

Browse files
committed
minor adjustments
1 parent cfcecbf commit b1ee591

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
with:
1313
node-version: "20.x"
1414
- run: |
15-
npm i
15+
npm ci
1616
npm run build
1717
npm run test
1818
working-directory: ./

.github/workflows/update_snaphost.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
with:
1717
node-version: "20.x"
1818
- run: |
19-
npm i
19+
npm ci
2020
npm run test -- -u
2121
working-directory: ./
2222
- name: Add & Commit

bin/cdk.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@ import { DifyOnAwsStack } from '../lib/dify-on-aws-stack';
66
const app = new cdk.App();
77
new DifyOnAwsStack(app, 'DifyOnAwsStack', {
88
env: {
9-
region: 'ap-northeast-1',
9+
region: 'us-west-2',
1010
// You need to explicitly set AWS account ID when you look up an existing VPC.
1111
// account: '123456789012'
1212
},
1313
// Allow access from the Internet. Narrow this down if you want further security.
1414
allowedCidrs: ['0.0.0.0/0'],
15+
// Set Dify version
1516
difyImageTag: '0.8.3',
17+
18+
// Please see DifyOnAwsStackProps in lib/dify-on-aws-stack.ts for all the available properties
1619
});

0 commit comments

Comments
 (0)