Skip to content

Commit

Permalink
deps: add licensing to private installation (#4947)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewelwell authored Jan 6, 2025
1 parent 197b8e3 commit fe949c8
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ ARG RBAC_REVISION
RUN --mount=type=secret,id=github_private_cloud_token \
echo "https://$(cat /run/secrets/github_private_cloud_token):@github.com" > ${HOME}/.git-credentials && \
git config --global credential.helper store && \
make install-packages opts='--without dev --with saml,auth-controller,ldap,workflows' && \
make install-packages opts='--without dev --with saml,auth-controller,ldap,workflows,licensing' && \
make install-private-modules

# * api-runtime
Expand Down
20 changes: 19 additions & 1 deletion api/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions api/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,12 @@ optional = true
[tool.poetry.group.workflows.dependencies]
workflows-logic = { git = "https://github.com/flagsmith/flagsmith-workflows", tag = "v2.7.5" }

[tool.poetry.group.licensing]
optional = true

[tool.poetry.group.licensing.dependencies]
licensing = { git = "https://github.com/flagsmith/licensing", tag = "v0.1.0" }

[tool.poetry.group.dev.dependencies]
django-test-migrations = "~1.2.0"
responses = "~0.22.0"
Expand Down

0 comments on commit fe949c8

Please sign in to comment.