File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 12
12
with :
13
13
node-version : " 20.x"
14
14
- run : |
15
- npm i
15
+ npm ci
16
16
npm run build
17
17
npm run test
18
18
working-directory: ./
Original file line number Diff line number Diff line change 16
16
with :
17
17
node-version : " 20.x"
18
18
- run : |
19
- npm i
19
+ npm ci
20
20
npm run test -- -u
21
21
working-directory: ./
22
22
- name : Add & Commit
Original file line number Diff line number Diff line change @@ -6,11 +6,14 @@ import { DifyOnAwsStack } from '../lib/dify-on-aws-stack';
6
6
const app = new cdk . App ( ) ;
7
7
new DifyOnAwsStack ( app , 'DifyOnAwsStack' , {
8
8
env : {
9
- region : 'ap-northeast-1 ' ,
9
+ region : 'us-west-2 ' ,
10
10
// You need to explicitly set AWS account ID when you look up an existing VPC.
11
11
// account: '123456789012'
12
12
} ,
13
13
// Allow access from the Internet. Narrow this down if you want further security.
14
14
allowedCidrs : [ '0.0.0.0/0' ] ,
15
+ // Set Dify version
15
16
difyImageTag : '0.8.3' ,
17
+
18
+ // Please see DifyOnAwsStackProps in lib/dify-on-aws-stack.ts for all the available properties
16
19
} ) ;
You can’t perform that action at this time.
0 commit comments