File tree 4 files changed +219
-103
lines changed
4 files changed +219
-103
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
3
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
+
4
18
## [ 0.9.6] - 2023-09-15
5
19
- fix: updated grpcio to support python 3.11
6
20
- fix: gunicorn will be patched on start up
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ author_email = ak@mausbrand.de
6
6
description = a lightweight web application launcher for gunicorn and static files.
7
7
long_description = file: README.md
8
8
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
10
10
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
12
12
classifiers =
13
13
Programming Language :: Python :: 3
14
14
Operating System :: OS Independent
@@ -19,11 +19,11 @@ package_dir =
19
19
packages = find:
20
20
python_requires = >=3.8
21
21
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
27
27
28
28
[options.packages.find]
29
29
where = src
You can’t perform that action at this time.
0 commit comments