* add cloudfront * modify: healthcheck disable * modify: health check option * modify nodejsbuild * add nodejs version * endpoint configuration * set axios url * remote console.log VITE_PROXY_TARGET * create alb stack * add alb to origin * alb build success * remote baseURL setting * add redirect * change responseHttpStatus to 200 * modify output and readme * modify architecture * add health check path route to cloudfront routing * modified: c9 env name in deploy langflow section * modified : package dependency for pymysql * modified: deploy procedure * modified: deploy procedure (ja) --------- Co-authored-by: nsxshota <nsxshota@amazon.co.jp> Co-authored-by: ymkazuki <ymkazuki@amazon.co.jp> Co-authored-by: Shota Nakamoto <53632932+nsy0328@users.noreply.github.com>
22 lines
No EOL
957 B
JavaScript
22 lines
No EOL
957 B
JavaScript
#!/usr/bin/env node
|
|
import 'source-map-support/register';
|
|
import * as cdk from 'aws-cdk-lib';
|
|
import { LangflowAppStack } from '../lib/cdk-stack';
|
|
|
|
const app = new cdk.App();
|
|
|
|
new LangflowAppStack(app, 'LangflowAppStack', {
|
|
/* If you don't specify 'env', this stack will be environment-agnostic.
|
|
* Account/Region-dependent features and context lookups will not work,
|
|
* but a single synthesized template can be deployed anywhere. */
|
|
|
|
/* Uncomment the next line to specialize this stack for the AWS Account
|
|
* and Region that are implied by the current CLI configuration. */
|
|
// env: { account: process.env.CDK_DEFAULT_ACCOUNT, region: process.env.CDK_DEFAULT_REGION },
|
|
|
|
/* Uncomment the next line if you know exactly what Account and Region you
|
|
* want to deploy the stack to. */
|
|
// env: { account: '123456789012', region: 'us-east-1' },
|
|
|
|
/* For more information, see https://docs.aws.amazon.com/cdk/latest/guide/environments.html */
|
|
}); |