Skip to content

Commit dfcff2f

Browse files
committed
renamed to fastapi-template
1 parent e89bf73 commit dfcff2f

File tree

7 files changed

+77
-77
lines changed

7 files changed

+77
-77
lines changed

api-shared/src/api_shared/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def RABBITMQ_URL(self) -> str:
212212

213213
model_config = SettingsConfigDict(
214214
env_file=".env",
215-
# env_prefix="API_TEMPLATE_SHARED_",
215+
# env_prefix="FASTAPI_TEMPLATE_SHARED_",
216216
env_file_encoding="utf-8",
217217
extra="ignore",
218218
)

api-workers-general/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ addopts = [
7070
# "--strict-markers",
7171
# "--doctest-modules",
7272
# NOTE: cov is not working with pycharm debugger. Enable it later!
73-
# "--cov api_template",
73+
# "--cov fastapi_template",
7474
# "--cov-report=xml",
7575
# "--cov-report html",
7676
]
@@ -114,7 +114,7 @@ extend-exclude = [
114114
# "*.ipynb" = ["E501"] # disable line-too-long in notebooks
115115

116116
# "path/to/file.py" = ["E402"]
117-
# 'api_template/__init__.py' = ['F405', 'F403']
117+
# 'fastapi_template/__init__.py' = ['F405', 'F403']
118118

119119
# [tool.ruff.flake8-quotes]
120120
# inline-quotes = "single"

api-workers-general/src/worker/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class Settings(SharedBaseSettings):
77

88
model_config = SettingsConfigDict(
99
env_file=".env",
10-
# env_prefix="API_TEMPLATE_WORKER_",
10+
# env_prefix="FASTAPI_TEMPLATE_WORKER_",
1111
env_file_encoding="utf-8",
1212
extra="ignore",
1313
)

api-workers-ml/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ addopts = [
7171
# "--strict-markers",
7272
# "--doctest-modules",
7373
# NOTE: cov is not working with pycharm debugger. Enable it later!
74-
# "--cov api_template",
74+
# "--cov fastapi_template",
7575
# "--cov-report=xml",
7676
# "--cov-report html",
7777
]
@@ -115,7 +115,7 @@ extend-exclude = [
115115
# "*.ipynb" = ["E501"] # disable line-too-long in notebooks
116116

117117
# "path/to/file.py" = ["E402"]
118-
# 'api_template/__init__.py' = ['F405', 'F403']
118+
# 'fastapi_template/__init__.py' = ['F405', 'F403']
119119

120120
# [tool.ruff.flake8-quotes]
121121
# inline-quotes = "single"

app/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def DB_URL(self) -> str:
5151

5252
model_config = SettingsConfigDict(
5353
env_file=".env",
54-
# env_prefix="API_TEMPLATE_",
54+
# env_prefix="FASTAPI_TEMPLATE_",
5555
env_file_encoding="utf-8",
5656
extra="ignore",
5757
)

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "api_template"
2+
name = "fastapi_template"
33
version = "0.0.1"
44
description = "FastAPI Template with Industry Standard Observability"
55
readme = "README.md"
@@ -13,7 +13,7 @@ maintainers = [
1313
]
1414

1515
keywords = [
16-
"api_template"
16+
"fastapi_template"
1717
]
1818

1919
classifiers = [
@@ -81,7 +81,7 @@ addopts = [
8181
# "--strict-markers",
8282
# "--doctest-modules",
8383
# NOTE: cov is not working with pycharm debugger. Enable it later!
84-
# "--cov api_template",
84+
# "--cov fastapi_template",
8585
# "--cov-report=xml",
8686
# "--cov-report html",
8787
]
@@ -133,7 +133,7 @@ extend-exclude = [
133133
# "*.ipynb" = ["E501"] # disable line-too-long in notebooks
134134

135135
# "path/to/file.py" = ["E402"]
136-
# 'api_template/__init__.py' = ['F405', 'F403']
136+
# 'fastapi_template/__init__.py' = ['F405', 'F403']
137137

138138
# [tool.ruff.flake8-quotes]
139139
# inline-quotes = "single"

uv.lock

Lines changed: 66 additions & 66 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)