diff --git a/CHANGELOG.md b/CHANGELOG.md index 15ef876..9663217 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Added optional ENV variables `REDIS_DB_CACHE` (default `0`) and `REDIS_DB_SESSIONS` (default `1`). +- Added the `Development Guide` and `Product Documentation`. + +### Changed + +- Updated the README. ## 0.12.0 - 2023-02-27 diff --git a/docs/development.md b/docs/development.md index 7117d31..8f4fdfb 100644 --- a/docs/development.md +++ b/docs/development.md @@ -15,6 +15,7 @@ * [API and integration](#api-and-integration) * [Cookies crawler](#cookies-crawler) * [How to update to the latest version](#how-to-update-to-the-latest-version) +* [Production build](#production-build) * [Contributing](#contributing) ## Stack @@ -220,6 +221,17 @@ $ make install $ make restart ``` +## Production build + +For production usage, there are prepared docker images on the [DockerHub](https://hub.docker.com/r/68publishers/cmp/tags). + +Two images are published with each new version of the application: + +- `68publishers/cmp:app-{version}` - the container with the application +- `68publishers/cmp:worker-{version}` - the container with the worker + +The images are already build, they contain all libraries, assets and so on. So there should be no need to manually install or build anything into them. + ## Contributing If you find any problems or have a specific question, please create an issue on GitHub. We will address it as soon as possible.