mirror of
https://github.com/ferdzo/iotDashboard.git
synced 2026-04-05 17:16:26 +00:00
Migration to UV, introducing db_write, mqtt_ingestion, db_migrations, half working prototype.
This commit is contained in:
1
services/device_manager/.python-version
Normal file
1
services/device_manager/.python-version
Normal file
@@ -0,0 +1 @@
|
||||
3.13
|
||||
3
services/device_manager/README.md
Normal file
3
services/device_manager/README.md
Normal 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.
|
||||
6
services/device_manager/main.py
Normal file
6
services/device_manager/main.py
Normal file
@@ -0,0 +1,6 @@
|
||||
def main():
|
||||
print("Hello from device-manager!")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
7
services/device_manager/pyproject.toml
Normal file
7
services/device_manager/pyproject.toml
Normal 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 = []
|
||||
Reference in New Issue
Block a user