mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-02-27 10:13:11 -05:00
Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com> Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com> Co-authored-by: Hayden <64056131+hay-kot@users.noreply.github.com>
10 lines
181 B
Python
10 lines
181 B
Python
from pathlib import Path
|
|
|
|
from mealie import __version__
|
|
|
|
APP_VERSION = __version__
|
|
|
|
CWD = Path(__file__).parent
|
|
PACKAGE_DIR = CWD.parent.parent
|
|
BASE_DIR = CWD.parent.parent.parent
|