We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am having an error while running serverless deploy after following the starter instructions.
The error states: Unable to link dependency 'bin' because a file by the same name exists in this service
This is the serverless.yml content:
service: py-server
plugins:
custom: pythonRequirements: dockerizePip: false pythonBin: C:\Python27\python
provider: name: aws runtime: python2.7 stage: dev region: us-east-1
functions: query_forest: handler: handler.query_forest events: - http: path: / method: get
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am having an error while running serverless deploy after following the starter instructions.
The error states:
Unable to link dependency 'bin' because a file by the same name exists in this service
This is the serverless.yml content:
service: py-server
plugins:
custom:
pythonRequirements:
dockerizePip: false
pythonBin: C:\Python27\python
provider:
name: aws
runtime: python2.7
stage: dev
region: us-east-1
functions:
query_forest:
handler: handler.query_forest
events:
- http:
path: /
method: get
The text was updated successfully, but these errors were encountered: