first commit

This commit is contained in:
2024-11-13 15:17:39 +03:00
commit 8e15a5103a
6 changed files with 1082 additions and 0 deletions

3
.gitmodules vendored Normal file
View File

@@ -0,0 +1,3 @@
[submodule "protos"]
path = protos
url = https://git.denco.store/fakz9/DENCO-gRPC-protos.git

0
README.md Normal file
View File

12
main.py Normal file
View File

@@ -0,0 +1,12 @@
import asyncio
async def main():
print("Hello")
await asyncio.sleep(1)
print("World")
if __name__ == '__main__':
loop = asyncio.get_event_loop()
loop.run_until_complete(main())

1
protos Submodule

Submodule protos added at 391674e607

20
pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[project]
name = "denco"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115.5",
"grpc-interceptor>=0.15.4",
"grpcio>=1.67.1",
"grpcio-tools>=1.67.1",
"sqlalchemy[asyncio]>=2.0.36",
"alembic>=1.14.0",
"asyncpg>=0.30.0",
"aiohttp[speedups]>=3.10.10",
"python-dotenv>=1.0.1",
"gunicorn>=23.0.0",
"uvicorn[standard]>=0.32.0",
"pydantic[email,timezone]>=2.9.2",
]

1046
uv.lock generated Normal file

File diff suppressed because it is too large Load Diff