mirror of
https://github.com/DavidGailleton/42-Piscine_Python.git
synced 2026-03-14 05:06:55 +01:00
module 8 ex1 + ex2 WIP
This commit is contained in:
5
08/ex2/.env.example
Normal file
5
08/ex2/.env.example
Normal 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
1
08/ex2/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.env
|
||||
9
08/ex2/oracle.py
Normal file
9
08/ex2/oracle.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from dotenv import load_dotenv
|
||||
|
||||
|
||||
def main() -> None:
|
||||
pass
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user