npm run init
first time to install dependencies and initialize your local databasenpm run develop
local-admin@devlaunchers.org
and password W&x5ZzOMtBCVt1YAUiuSzt~5
. Alternatively, you can run it with Docker. There are 2 make targets available to do this.
make build-docker
to build the docker container. This may take a minute.make run-docker
to start up the strapiv4 server.Once the docker container is running, the strapi server will auto-reload with your changes without having to restart the container.
Also, if the container goes down for some reason, you do not need to rebuild it again. Run make run-docker
and it will start up again.
Follow the contributing guide
We are using semantic versioning to tag release. Follow https://github.com/semantic-release/semantic-release#commit-message-format to format the commit messages.
Once you are ready to create a new release, create a PR to merge main branch to release branch.
Go to https://github.com/strapi/strapi/releases to find the latest version, then update all @strapi
packages in
package.json
to this version and run npm install
.
To run tests, please run npm test
or npm run test:coverage
to include coverage report.
With Playwright plugin installed in VSCode you can run individual suites and tests in Test Explorer.
We use Istanbul (nyc) for code coverage, using text, cobertura and lcov report formats. Istnabul is configured using .nycrc
file.
Code Coverage plugin can be used to review non-covered code based on generated coverage/lcov.info
.
Within CI we run all tests with Postgres using Testcontainers.
If your test is running fine locally, but failing in CI, you can debug it locally by running npm run test:postgres
.
there are few prerequisites: