Project management system for publishers, magazines and content creators, written on the top of Django Framework.
- complete posts management: from article idea to publishing;
- articles stages, assignees, roles;
- posts metadata, editors, authors, attachments (images, PDF's, files);
- extendable Markdown engine with ability to use external one;
- posts ideas with voting system;
- discussions, email notifications;
- team actions logs;
- publish content to S3 and WordPress with async tasks.
This project uses uv for dependency management. Make sure you have uv installed:
curl -LsSf https://astral.sh/uv/install.sh | shThis will install development dependencies:
make develTo create a new version, follow these steps:
-
Make sure all your changes are committed.
-
Run one of the following commands to bump the version in pyproject.toml:
For a major version bump (e.g., 1.0.0 -> 2.0.0)
make bump-version TYPE=majorFor a minor version bump (e.g., 1.0.0 -> 1.1.0)
make bump-version TYPE=minorFor a patch version bump (e.g., 1.0.0 -> 1.0.1)
make bump-version TYPE=patch*Commit the changes to the repository.
- Create a git tag with the new version:
make create-tag- Push the changes and new tag to trigger the CI/CD pipeline:
git push origin
git push origin --tagsThe CI/CD pipeline will automatically build and deploy the new version when it detects the new tag.
- MAJOR: Incremented for incompatible API changes
- MINOR: Incremented for backward-compatible functionality additions
- PATCH: Incremented for backward-compatible bug fixes
The current version can be checked by running:
grep 'version = ' pyproject.tomlTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
