faster-app 0.0.3__tar.gz → 0.0.4__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.
Files changed (33) hide show
  1. {faster_app-0.0.3 → faster_app-0.0.4}/PKG-INFO +3 -3
  2. {faster_app-0.0.3 → faster_app-0.0.4}/README.md +2 -2
  3. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/__init__.py +1 -1
  4. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/settings/__init__.py +2 -2
  5. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/settings/builtins/settings.py +1 -1
  6. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/statics/swagger-ui-bundle.min.js +7 -9
  7. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app.egg-info/PKG-INFO +3 -3
  8. {faster_app-0.0.3 → faster_app-0.0.4}/pyproject.toml +1 -1
  9. {faster_app-0.0.3 → faster_app-0.0.4}/LICENSE +0 -0
  10. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/base.py +0 -0
  11. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/commands/__init__.py +0 -0
  12. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/commands/base.py +0 -0
  13. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/commands/builtins/__init__.py +0 -0
  14. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/commands/builtins/db.py +0 -0
  15. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/commands/builtins/fastapi.py +0 -0
  16. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/commands/discover.py +0 -0
  17. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/db.py +0 -0
  18. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/models/__init__.py +0 -0
  19. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/models/base.py +0 -0
  20. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/models/discover.py +0 -0
  21. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/routes/__init__.py +0 -0
  22. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/routes/base.py +0 -0
  23. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/routes/builtins/__init__.py +0 -0
  24. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/routes/builtins/defaults.py +0 -0
  25. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/routes/builtins/swagger.py +0 -0
  26. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/routes/discover.py +0 -0
  27. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/settings/discover.py +0 -0
  28. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app/statics/swagger-ui.min.css +0 -0
  29. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app.egg-info/SOURCES.txt +0 -0
  30. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app.egg-info/dependency_links.txt +0 -0
  31. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app.egg-info/requires.txt +0 -0
  32. {faster_app-0.0.3 → faster_app-0.0.4}/faster_app.egg-info/top_level.txt +0 -0
  33. {faster_app-0.0.3 → faster_app-0.0.4}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: faster_app
3
- Version: 0.0.3
3
+ Version: 0.0.4
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.3"
204
+ HOST: str = "127.0.0.4"
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.3 (2025-09-09)
272
+ ### v0.0.4 (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.3"
179
+ HOST: str = "127.0.0.4"
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.3 (2025-09-09)
247
+ ### v0.0.4 (2025-09-09)
248
248
 
249
249
  - 🎉 初始版本发布
250
250
  - ✅ 提供基础的自动发现功能
@@ -9,7 +9,7 @@ Faster API - 一个轻量级的 Python Web 框架
9
9
  - 数据库连接管理 (tortoise_init)
10
10
  """
11
11
 
12
- __version__ = "0.0.3"
12
+ __version__ = "0.0.4"
13
13
  __author__ = "peizhenfei"
14
14
  __email__ = "peizhenfei@hotmail.com"
15
15
 
@@ -4,7 +4,7 @@
4
4
  提供基于 pydantic-settings 的配置管理
5
5
  """
6
6
 
7
- from faster_app.settings.builtins.settings import DefaultSettings
7
+ from .discover import SettingsDiscover
8
8
 
9
9
  # 创建默认配置实例
10
- configs = DefaultSettings()
10
+ configs = SettingsDiscover().merge()
@@ -11,7 +11,7 @@ class DefaultSettings(BaseSettings):
11
11
 
12
12
  # 基础配置
13
13
  PROJECT_NAME: str = "Faster API"
14
- VERSION: str = "0.0.3"
14
+ VERSION: str = "0.0.4"
15
15
  DEBUG: bool = True
16
16
 
17
17
  # Server 配置
@@ -31295,14 +31295,12 @@ ${u.current.stack}
31295
31295
  o = { type: "text", value: "".concat(e, "\n") };
31296
31296
  0 === t
31297
31297
  ? ((n = m(
31298
- p
31299
- .slice(f + 1, d)
31300
- .concat(
31301
- C({
31302
- children: [o],
31303
- className: a.properties.className,
31304
- })
31305
- ),
31298
+ p.slice(f + 1, d).concat(
31299
+ C({
31300
+ children: [o],
31301
+ className: a.properties.className,
31302
+ })
31303
+ ),
31306
31304
  r
31307
31305
  )),
31308
31306
  h.push(n))
@@ -31828,7 +31826,7 @@ ${u.current.stack}
31828
31826
  return !(
31829
31827
  !e ||
31830
31828
  0 <= r()(e).call(e, "localhost") ||
31831
- 0 <= r()(e).call(e, "127.0.0.3") ||
31829
+ 0 <= r()(e).call(e, "127.0.0.4") ||
31832
31830
  "none" === e
31833
31831
  );
31834
31832
  },
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: faster_app
3
- Version: 0.0.3
3
+ Version: 0.0.4
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.3"
204
+ HOST: str = "127.0.0.4"
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.3 (2025-09-09)
272
+ ### v0.0.4 (2025-09-09)
273
273
 
274
274
  - 🎉 初始版本发布
275
275
  - ✅ 提供基础的自动发现功能
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "faster_app"
7
- version = "0.0.3"
7
+ version = "0.0.4"
8
8
  description = "一个轻量级的 Python Web 框架,提供自动发现、模型基类、命令行工具等功能"
9
9
  readme = "README.md"
10
10
  license = "MIT"
File without changes
File without changes
File without changes