@eagerworks/sequelize-lambda-migrations
v1.0.1
Published
Package to manage sequelize migrations on serverless
Downloads
9
Keywords
Readme
Sequelize Lambda Migrations
Usage
In order to use the package first set up the following environment variables:
DB_NAME
: database nameDB_USERNAME
: database usernameDB_PASSWORD
: database passwordDB_PORT
: database portDB_DIALECT
: database dialect (postgress/mysql)DB_HOST
: database hostMIGRATIONS_GLOB
: glob to the migration files (e.g.src/db/migrations/*.js
)
Then import the lambda functions from the package and use it directly on your serverless file.
serverless.yml
functions:
migrate:
handler: handler.migrate
timeout: 60
rollback:
handler: handler.rollback
timeout: 60
reset:
handler: handler.reset
timeout: 60
handler.ts
import { migrate, rollback, reset } from '@eagerworks/sequelize-lambda-migrations';
export { migrate, rollback, reset };
One can later invoke the functions to migrate or rollback the database.
serverless invoke --function <migrate|rollback|reset> --stage <myStage> --aws-profile <myProfile> --region <myRegion>