Migration to UV, introducing db_write, mqtt_ingestion, db_migrations, half working prototype.

This commit is contained in:
Andrej Mickov
2025-10-28 23:14:58 +01:00
parent 5028dae200
commit 0b96c72f45
47 changed files with 2641 additions and 81 deletions

View File

@@ -0,0 +1 @@
3.13

View File

@@ -0,0 +1,3 @@
# Device Manager
This is a service that has a key role in devices and their management. It is used to provision, create, manage the lifecycle of devices and everything connected to it.

View File

@@ -0,0 +1,6 @@
def main():
print("Hello from device-manager!")
if __name__ == "__main__":
main()

View File

@@ -0,0 +1,7 @@
[project]
name = "device-manager"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = []