Skip to content

Commit

Permalink
fix: add environments
Browse files Browse the repository at this point in the history
  • Loading branch information
bernardobridge committed Jan 23, 2024
1 parent 9782d7a commit db50a28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/serverless-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
ENVIRONMENT:
description: 'Environment to deploy to'
required: true
default: 'master'
default: 'dev'
type: string
SHOULD_SEED_DB:
description: 'Seed the database?'
Expand Down
1 change: 1 addition & 0 deletions constants.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const SERVICE_NAME = "movie-service";
const ENVIRONMENT = process.env.ENVIRONMENT || "dev";
const REGION = process.env.DEPLOYMENT_REGION || "eu-west-2";

module.exports = {
Expand Down

0 comments on commit db50a28

Please sign in to comment.