Skip to content

Commit 8cbf155

Browse files
Apply prepare changes
1 parent 47eb247 commit 8cbf155

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,3 @@ wslink==1.12.4
6363
yarl>=1
6464
# via aiohttp
6565

66-
opengeodeweb-microservice==1.*,>=1.1.3

src/opengeodeweb_viewer/config.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,16 @@
66
def default_config() -> None:
77
os.environ["HOST"] = "localhost"
88
os.environ["PORT"] = "1234"
9-
os.environ["DATA_FOLDER_PATH"] = os.path.join(os.environ["PROJECT_FOLDER_PATH"], "data")
9+
os.environ["DATA_FOLDER_PATH"] = os.path.join(
10+
os.environ["PROJECT_FOLDER_PATH"], "data"
11+
)
1012

1113

1214
def prod_config() -> None:
1315
default_config()
1416
os.environ["PROJECT_FOLDER_PATH"] = "/project/"
1517

18+
1619
def dev_config() -> None:
1720
default_config()
1821
data_folder_path = os.environ.get("DATA_FOLDER_PATH")

0 commit comments

Comments
 (0)