We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65ec260 commit b5cc271Copy full SHA for b5cc271
cicd/3-app/aiproxy/template.yml
@@ -76,6 +76,11 @@ Resources:
76
Port: 80
77
Protocol: HTTP
78
79
+ SomeNonsense:
80
+ Type: AWS::NotReal::Resource
81
+ Properties:
82
+ SomeProperty: SomeValue
83
+
84
HttpsListener:
85
Type: AWS::ElasticLoadBalancingV2::Listener
86
Properties:
src/__init__.py
@@ -16,6 +16,10 @@
16
import openai
17
18
def create_app(test_config=None):
19
20
+ # divide by zero LOL
21
+ print(1/0)
22
23
# create and configure the app
24
app = Flask(__name__, instance_relative_config=True)
25
app.config.from_mapping(
0 commit comments