-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert cron, ceramic and websockets into monorepo apps #4556
Changes from all commits
de44201
bf75c79
3ec9de6
3cbd853
a0acd34
f3ea4db
7c11591
cc45102
9526f51
65468d5
3771435
474333f
0bb515b
75d2cd7
25adbff
e71acf5
42ad90e
2e5ec8d
6159a9f
9292e6f
4e97d50
ea4f8fd
988f896
2a3dc8f
9e14f86
a34e218
0a2b779
5162754
13b1385
e92aba9
8b0c77a
6f09889
283b51b
024be09
95d19d2
24bf7de
955c11a
6c5cad9
58be596
662852d
238e89c
6c0507b
c062ebb
26fb99d
5dcc56d
ac52dca
2b5bb01
9d2cc3c
9a5eef0
6e19f3c
b3ebbcf
ac841d2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,47 @@ | ||
import { StagingStack } from './StagingStack'; | ||
Check warning on line 1 in .cdk/WebappStagingStack.ts GitHub Actions / Test apps
Check warning on line 1 in .cdk/WebappStagingStack.ts GitHub Actions / Test apps
Check warning on line 1 in .cdk/WebappStagingStack.ts GitHub Actions / Test apps
Check warning on line 1 in .cdk/WebappStagingStack.ts GitHub Actions / Test apps
Check warning on line 1 in .cdk/WebappStagingStack.ts GitHub Actions / Test app
|
||
import { StackProps } from 'aws-cdk-lib'; | ||
import { Construct } from 'constructs'; | ||
|
||
export class WebappStagingStack extends StagingStack { | ||
constructor(scope: Construct, id: string, props: StackProps) { | ||
super(scope, id, props, { | ||
options: [ | ||
{ | ||
namespace: 'aws:elasticbeanstalk:environment:process:websocket', | ||
optionName: 'HealthCheckPath', | ||
value: '/health_check' | ||
}, | ||
{ | ||
namespace: 'aws:elasticbeanstalk:environment:process:websocket', | ||
optionName: 'Port', | ||
value: '3002' | ||
}, | ||
{ | ||
namespace: 'aws:elasticbeanstalk:environment:process:websocket', | ||
optionName: 'Protocol', | ||
value: 'HTTP' | ||
}, | ||
{ | ||
namespace: 'aws:elbv2:listener:3002', | ||
optionName: 'ListenerEnabled', | ||
value: 'true' | ||
}, | ||
{ | ||
namespace: 'aws:elbv2:listener:3002', | ||
optionName: 'Protocol', | ||
value: 'HTTPS' | ||
}, | ||
{ | ||
namespace: 'aws:elbv2:listener:3002', | ||
optionName: 'SSLCertificateArns', | ||
value: 'arn:aws:acm:us-east-1:310849459438:certificate/bfea3120-a440-4667-80fd-d285146f2339' | ||
}, | ||
{ | ||
namespace: 'aws:elbv2:listener:3002', | ||
optionName: 'DefaultProcess', | ||
value: 'websocket' | ||
} | ||
] | ||
// options: [ | ||
// { | ||
// namespace: 'aws:elasticbeanstalk:environment:process:websocket', | ||
// optionName: 'HealthCheckPath', | ||
// value: '/api/health' | ||
// }, | ||
// { | ||
// namespace: 'aws:elasticbeanstalk:environment:process:websocket', | ||
// optionName: 'Port', | ||
// value: '3002' | ||
// }, | ||
// { | ||
// namespace: 'aws:elasticbeanstalk:environment:process:websocket', | ||
// optionName: 'Protocol', | ||
// value: 'HTTP' | ||
// }, | ||
// { | ||
// namespace: 'aws:elbv2:listener:3002', | ||
// optionName: 'ListenerEnabled', | ||
// value: 'true' | ||
// }, | ||
// { | ||
// namespace: 'aws:elbv2:listener:3002', | ||
// optionName: 'Protocol', | ||
// value: 'HTTPS' | ||
// }, | ||
// { | ||
// namespace: 'aws:elbv2:listener:3002', | ||
// optionName: 'SSLCertificateArns', | ||
// value: 'arn:aws:acm:us-east-1:310849459438:certificate/bfea3120-a440-4667-80fd-d285146f2339' | ||
// }, | ||
// { | ||
// namespace: 'aws:elbv2:listener:3002', | ||
// optionName: 'DefaultProcess', | ||
// value: 'websocket' | ||
// } | ||
// ] | ||
}); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ scripts/ | |
dist/ | ||
.next/ | ||
|
||
background/ceramicServer/generated/ | ||
apps/ceramic/src/generated/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are we not going to save the build cache anymore 😮