Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 666 Bytes

README.md

File metadata and controls

35 lines (23 loc) · 666 Bytes

@baton/backend

Coverage

🧰 Development

Copy .env.example to .env and update as necessary. Then:

# install dependencies
yarn install

# then:
# start dev server in watch mode
yarn dev

# and you can:

# run tests
yarn test

# run tests in watch mode
yarn test:watch

# run e2e tests
yarn test:e2e

# generate migrations for schema changes
yarn migrations:generate

# apply migrations
yarn migrations:run

Pushes to the main branch will automatically deploy to the production environment after checks pass.