module 8 ex1 + ex2 WIP

This commit is contained in:
2026-03-07 18:52:18 +01:00
parent 819075d5d9
commit 76206c8ac8
9 changed files with 1271 additions and 0 deletions

5
08/ex2/.env.example Normal file
View File

@@ -0,0 +1,5 @@
MATRIX_MODE="" # "development" or "production"
DATABASE_URL="" # Connection string for data storage
API_KEY="" # Secret key for external services
LOG_LEVEL="" # Logging verbosity
ZION_ENDPOINT="" # URL for the resistance network

1
08/ex2/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.env

9
08/ex2/oracle.py Normal file
View File

@@ -0,0 +1,9 @@
from dotenv import load_dotenv
def main() -> None:
pass
if __name__ == "__main__":
main()