Skip to content

Commit

Permalink
add: fastapi[standard]
Browse files Browse the repository at this point in the history
  • Loading branch information
thr3a committed Dec 20, 2024
1 parent f683baf commit d2046d2
Show file tree
Hide file tree
Showing 6 changed files with 585 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/.venv
.env
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.12
Empty file added README.md
Empty file.
6 changes: 6 additions & 0 deletions hello.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
def main():
print("Hello from fastapi-template!")


if __name__ == "__main__":
main()
9 changes: 9 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[project]
name = "fastapi-template"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi[standard]>=0.115.6",
]
568 changes: 568 additions & 0 deletions uv.lock

Large diffs are not rendered by default.

0 comments on commit d2046d2

Please sign in to comment.