-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from ropable/master
Added Sentry SDK to project, update Poetry version
- Loading branch information
Showing
12 changed files
with
145 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,3 +61,4 @@ spec: | |
- ALL | ||
readOnlyRootFilesystem: false | ||
restartPolicy: Always | ||
terminationGracePeriodSeconds: 180 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "ibms" | ||
version = "2.8.2" | ||
version = "2.8.3" | ||
description = "Integrated Business Management System corporate application" | ||
authors = ["Ashley Felton <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
@@ -12,18 +12,19 @@ psycopg2 = "2.9.9" | |
dbca-utils = "1.1.6" | ||
django-extensions = "3.2.3" | ||
python-dotenv = "1.0.0" | ||
dj-database-url = "1.0.0" | ||
dj-database-url = "2.1.0" | ||
gunicorn = "21.2.0" | ||
django-crispy-forms = "2.0" | ||
crispy-bootstrap5 = "0.7" | ||
xlrd = "2.0.1" | ||
xlutils = "2.0.0" | ||
xlwt = "1.3.0" | ||
xlrd = "2.0.1" # TODO: deprecate | ||
xlutils = "2.0.0" # TODO: deprecate | ||
xlwt = "1.3.0" # TODO: deprecate | ||
openpyxl = "3.1.2" | ||
webtemplate-dbca = "1.6.0" | ||
whitenoise = {version = "6.6.0", extras = ["brotli"]} | ||
mixer = "7.2.2" | ||
tomli = "2.0.1" | ||
sentry-sdk = {version = "1.38.0", extras = ["django"]} | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
ipython = "^8.10.0" | ||
|