faster-app 0.0.2__tar.gz → 0.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {faster_app-0.0.2 → faster_app-0.0.3}/PKG-INFO +3 -3
- {faster_app-0.0.2 → faster_app-0.0.3}/README.md +2 -2
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/__init__.py +1 -1
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/base.py +1 -1
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/settings/builtins/settings.py +1 -1
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/statics/swagger-ui-bundle.min.js +1 -1
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app.egg-info/PKG-INFO +3 -3
- {faster_app-0.0.2 → faster_app-0.0.3}/pyproject.toml +1 -1
- {faster_app-0.0.2 → faster_app-0.0.3}/LICENSE +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/commands/__init__.py +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/commands/base.py +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/commands/builtins/__init__.py +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/commands/builtins/db.py +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/commands/builtins/fastapi.py +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/commands/discover.py +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/db.py +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/models/__init__.py +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/models/base.py +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/models/discover.py +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/routes/__init__.py +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/routes/base.py +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/routes/builtins/__init__.py +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/routes/builtins/defaults.py +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/routes/builtins/swagger.py +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/routes/discover.py +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/settings/__init__.py +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/settings/discover.py +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app/statics/swagger-ui.min.css +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app.egg-info/SOURCES.txt +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app.egg-info/dependency_links.txt +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app.egg-info/requires.txt +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/faster_app.egg-info/top_level.txt +0 -0
- {faster_app-0.0.2 → faster_app-0.0.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: faster_app
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.3
|
4
4
|
Summary: 一个轻量级的 Python Web 框架,提供自动发现、模型基类、命令行工具等功能
|
5
5
|
Author-email: peizhenfei <peizhenfei@hotmail.com>
|
6
6
|
Maintainer-email: peizhenfei <peizhenfei@hotmail.com>
|
@@ -201,7 +201,7 @@ class Settings(BaseSettings):
|
|
201
201
|
DEBUG: bool = True
|
202
202
|
|
203
203
|
# 服务器配置
|
204
|
-
HOST: str = "127.0.0.
|
204
|
+
HOST: str = "127.0.0.3"
|
205
205
|
PORT: int = 8000
|
206
206
|
|
207
207
|
# API 配置
|
@@ -269,7 +269,7 @@ SECRET_KEY=your-secret-key-here
|
|
269
269
|
|
270
270
|
## 📈 更新日志
|
271
271
|
|
272
|
-
### v0.0.
|
272
|
+
### v0.0.3 (2025-09-09)
|
273
273
|
|
274
274
|
- 🎉 初始版本发布
|
275
275
|
- ✅ 提供基础的自动发现功能
|
@@ -176,7 +176,7 @@ class Settings(BaseSettings):
|
|
176
176
|
DEBUG: bool = True
|
177
177
|
|
178
178
|
# 服务器配置
|
179
|
-
HOST: str = "127.0.0.
|
179
|
+
HOST: str = "127.0.0.3"
|
180
180
|
PORT: int = 8000
|
181
181
|
|
182
182
|
# API 配置
|
@@ -244,7 +244,7 @@ SECRET_KEY=your-secret-key-here
|
|
244
244
|
|
245
245
|
## 📈 更新日志
|
246
246
|
|
247
|
-
### v0.0.
|
247
|
+
### v0.0.3 (2025-09-09)
|
248
248
|
|
249
249
|
- 🎉 初始版本发布
|
250
250
|
- ✅ 提供基础的自动发现功能
|
@@ -7,7 +7,7 @@ from typing import Dict, List
|
|
7
7
|
class DiscoverBase(object):
|
8
8
|
INSTANCE_TYPE = None
|
9
9
|
TARGETS: List[Dict[str, str]] = []
|
10
|
-
FASTER_APP_PATH = os.path.dirname(
|
10
|
+
FASTER_APP_PATH = os.path.dirname(__file__)
|
11
11
|
|
12
12
|
def discover(self) -> List[type]:
|
13
13
|
"""
|
@@ -31828,7 +31828,7 @@ ${u.current.stack}
|
|
31828
31828
|
return !(
|
31829
31829
|
!e ||
|
31830
31830
|
0 <= r()(e).call(e, "localhost") ||
|
31831
|
-
0 <= r()(e).call(e, "127.0.0.
|
31831
|
+
0 <= r()(e).call(e, "127.0.0.3") ||
|
31832
31832
|
"none" === e
|
31833
31833
|
);
|
31834
31834
|
},
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: faster_app
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.3
|
4
4
|
Summary: 一个轻量级的 Python Web 框架,提供自动发现、模型基类、命令行工具等功能
|
5
5
|
Author-email: peizhenfei <peizhenfei@hotmail.com>
|
6
6
|
Maintainer-email: peizhenfei <peizhenfei@hotmail.com>
|
@@ -201,7 +201,7 @@ class Settings(BaseSettings):
|
|
201
201
|
DEBUG: bool = True
|
202
202
|
|
203
203
|
# 服务器配置
|
204
|
-
HOST: str = "127.0.0.
|
204
|
+
HOST: str = "127.0.0.3"
|
205
205
|
PORT: int = 8000
|
206
206
|
|
207
207
|
# API 配置
|
@@ -269,7 +269,7 @@ SECRET_KEY=your-secret-key-here
|
|
269
269
|
|
270
270
|
## 📈 更新日志
|
271
271
|
|
272
|
-
### v0.0.
|
272
|
+
### v0.0.3 (2025-09-09)
|
273
273
|
|
274
274
|
- 🎉 初始版本发布
|
275
275
|
- ✅ 提供基础的自动发现功能
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|