Metadata-Version: 2.1
Name: cdk-fargate-express
Version: 0.3.2
Summary: A sample JSII construct lib for Express Apps in AWS Fargate
Home-page: https://github.com/pahud/cdk-fargate-express.git
Author: Pahud Hsieh<hunhsieh@amazon.com>
License: Apache-2.0
Project-URL: Source, https://github.com/pahud/cdk-fargate-express.git
Description: # cdk-fargate-express
        
        Deploy your serverless Express app in AWS with AWS CDK
        
        ## Usage
        
        On deployment, AWS CDK executs `docker build` with your Express code assets at `express.d`
        
        For example:
        
        ```python
        # Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
        from cdk_fargate_express import ExpressService
        
        ExpressService(stack, "testing", vpc=vpc)
        ```
        
        You may specify different folder by specifying `expressAssets` property:
        
        ```python
        # Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
        ExpressService(stack, "testing",
            vpc=vpc,
            express_assets=path.join(__dirname, "../another_express.d")
        )
        ```
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: JavaScript
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Typing :: Typed
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved
Requires-Python: >=3.6
Description-Content-Type: text/markdown
