first commit
This commit is contained in:
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
[submodule "protos"]
|
||||
path = protos
|
||||
url = https://git.denco.store/fakz9/DENCO-gRPC-protos.git
|
||||
12
main.py
Normal file
12
main.py
Normal 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
1
protos
Submodule
Submodule protos added at 391674e607
20
pyproject.toml
Normal file
20
pyproject.toml
Normal 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",
|
||||
]
|
||||
Reference in New Issue
Block a user