Skip to content

Commit dabcefb

Browse files
authored
Merge pull request #12 from viur-framework/main
udpate
2 parents 1a503bf + c265469 commit dabcefb

File tree

4 files changed

+219
-103
lines changed

4 files changed

+219
-103
lines changed

.editorconfig

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[*]
2+
charset = utf-8
3+
4+
[*.{js,py,html,email}]
5+
indent_size = 4
6+
indent_style = space
7+
tab_width = 4
8+
end_of_line = lf
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
indent_size = 4
14+
indent_style = space
15+
trim_trailing_whitespace = false

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
# Changelog
22

33
This file documents any relevant changes.
4+
## [0.9.10] - 2024-05.06
5+
- fix: Improve and refactor entrypoint to make --workers and --threads argument working #7
6+
7+
## [0.9.9] - 2024-01.18
8+
- feat: added support timeout parameter
9+
- refactor: Change pip version from exact to minimum conditions
10+
11+
## [0.9.8] - 2023-11.22
12+
- feat: added support for custom environment variables
13+
14+
## [0.9.7] - 2023-10.27
15+
- fix: readded subdomain support
16+
- feat: added editorconf
17+
418
## [0.9.6] - 2023-09-15
519
- fix: updated grpcio to support python 3.11
620
- fix: gunicorn will be patched on start up

setup.cfg

+7-7
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ author_email = ak@mausbrand.de
66
description = a lightweight web application launcher for gunicorn and static files.
77
long_description = file: README.md
88
long_description_content_type = text/markdown
9-
url = https://github.com/XeoN-GHMB/app_server
9+
url = https://github.com/viur-framework/viur-app_server
1010
project_urls =
11-
Bug Tracker = https://github.com/XeoN-GHMB/app_server/issues
11+
Bug Tracker = https://github.com/viur-framework/viur-app_server/issues
1212
classifiers =
1313
Programming Language :: Python :: 3
1414
Operating System :: OS Independent
@@ -19,11 +19,11 @@ package_dir =
1919
packages = find:
2020
python_requires = >=3.8
2121
install_requires =
22-
werkzeug==2.3.7
23-
pyyaml==6.0
24-
gunicorn==21.2.0
25-
fs==2.4.16
26-
grpcio==1.58.0
22+
werkzeug~=2.3.7
23+
pyyaml~=6.0
24+
gunicorn~=21.2.0
25+
fs~=2.4.16
26+
grpcio>=1.58.0
2727

2828
[options.packages.find]
2929
where = src

0 commit comments

Comments
 (0)