Gitignore files stored by app

This commit is contained in:
Edgar P. Burkhart 2022-05-19 19:01:15 +02:00
parent 08868ce7c6
commit 53eab204ac
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
4 changed files with 2 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
env env
__pycache__ __pycache__
/nummi/media

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 481 KiB

View File

@ -14,6 +14,7 @@ from pathlib import Path
# Build paths inside the project like this: BASE_DIR / 'subdir'. # Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent BASE_DIR = Path(__file__).resolve().parent.parent
MEDIA_ROOT = BASE_DIR.joinpath("media")
# Quick-start development settings - unsuitable for production # Quick-start development settings - unsuitable for production