1.0.3 ā€¢ Published 6 years ago

serverless-package-common v1.0.3

Weekly downloads
273
License
MIT
Repository
github
Last release
6 years ago

serverless-package-common

šŸ“¦ Deploy microservice Python Serverless services with common code

Before deploying, this plugin symlinks folders containing shared code into your the root directory of your Serverless microservice.

Installation

npm i serverless-package-common --save-dev

Usage

service: your-service

plugins:
  - serverless-package-common

functions:
  # Your functions here

custom:
  packageCommon:
    common:
      - '../common'

Example Directory Structure

my-project@1.0.0
ā””ā”€ā”€ common
    ā””ā”€ā”€ resource.py
ā””ā”€ā”€ my-service
    ā””ā”€ā”€ handler.py
    ā””ā”€ā”€ serverless.yml
ā””ā”€ā”€ other-service
    ā””ā”€ā”€ handler.py
    ā””ā”€ā”€ serverless.yml

In handler.py, common code is import like so:

from common.resource import shared_resource

Developing

To use with serverless-offline or test suites, set your PYTHONPATH to the project's root directory. You can add this script to run as offline:start in package.json.

start-offline.sh

#!/bin/bash
# Run serverless offline for a given microservice

service=${1}

if [ -z "$service" ]
    then
        echo "No service specified"
        echo "Usage: npm run offline:start <service>"
        exit
    fi
        export PYTHONPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
        echo "Setting PYTHONPATH to project root:" $PYTHONPATH

        cd $service

        serverless offline start
1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago