Remove find_dotenv + add romm backt o gitginore

This commit is contained in:
Georges-Antoine Assi
2023-05-09 14:37:57 -04:00
parent 15c5b1d39e
commit 1f080b5760
2 changed files with 5 additions and 2 deletions

3
.gitignore vendored
View File

@@ -36,5 +36,8 @@ __pycache__
# database
mariadb
# used to mock the library/config/mounts/etc while testing
romm
# virtualenv
.venv

View File

@@ -1,7 +1,7 @@
import os
from dotenv import find_dotenv, load_dotenv
from dotenv import load_dotenv
load_dotenv(find_dotenv())
load_dotenv()
# Uvicorn
DEV_PORT: int = 5000