Provides MSSQL migration support in meyer.
- Docker 17.05 or newer (
brew cask install docker) - Node 10 LTS (optionally using
n-install, runn 10) - Yarn 1.12+ (
curl -o- -L https://yarnpkg.com/install.sh | bash)
To setup a local development environment, run docker-compose up -d.
This will start the required components for you to get up and running.
You can tear down this environment at any time by running docker-compose down --volumes --remove-orphans.
You may also need to run this command if your database gets in a weird state (e.g. app fails to boot).
To suspend resource usage but not completely destroy the environment, just run docker-compose down.
- First, make sure your dependencies are up to date by running
yarn install --check-files. - Next, ensure you refreshed your environment by running
docker-compose up -d.- you should see something like (
meyer-dbms-mssql_db_* is up-to-date)
- you should see something like (
- Finally, run
yarn test --watchin the root of the repository. Knock out some features!