Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 1015 Bytes

File metadata and controls

47 lines (30 loc) · 1015 Bytes

Packmind contribution guide

Starting the stack:

You will need node 22.17 and docker to start the development stack:

nvm use
npm i
PACKMIND_EDITION=oss node scripts/select-tsconfig.mjs
docker compose --profile=dev up

The app should be available at http://localhost:4200

Releasing

Update the CHANGELOG file:

  • Update the [Unreleased] section to add the new version and release date
  • Update the [Unreleased] link at the bottom of the Changelog:
[X.Y.X]: https://github.com/PackmindHub/packmind/compare/release/<previous release number>...release/X.Y.Z

Create the relase/X.Y.Z tag and push to GitHub.

Add a new section [Unreleased] section in the Changelog:

# [Unreleased]

## Added

## Changed

## Fixed

## Removed

Add a link for the unreleased section at the bottom of the file:

[Unreleased]: https://github.com/PackmindHub/packmind/compare/release/<previous release number>...HEAD