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 6ec3610 commit bd961d9Copy full SHA for bd961d9
serverless.component.yml
@@ -8,6 +8,10 @@ repo: https://github.com/serverless-components/express
8
license: MIT
9
main: ./src
10
11
+types:
12
+ providers:
13
+ - aws
14
+
15
actions:
16
# deploy
17
deploy:
src/serverless.js
@@ -27,13 +27,6 @@ class Express extends Component {
27
async deploy(inputs) {
28
const outputs = {};
29
30
- // Check credentials exist
31
- if (Object.keys(this.credentials.aws).length === 0) {
32
- const msg =
33
- 'AWS Credentials not found. Make sure you have a .env file in the current working directory. - Docs: https://git.io/JvArp';
34
- throw new Error(msg);
35
- }
36
-
37
console.log('Deploying Express App...');
38
39
inputs.domain = inputs.domain
0 commit comments