mirror of
https://github.com/himool/HimoolERP.git
synced 2024-11-15 11:58:42 +08:00
12 lines
206 B
Python
12 lines
206 B
Python
|
|
||
|
from pathlib import Path
|
||
|
|
||
|
|
||
|
BASE_DIR = Path(__file__).resolve().parent.parent
|
||
|
DATABASES = {
|
||
|
'default': {
|
||
|
'ENGINE': 'django.db.backends.sqlite3',
|
||
|
'NAME': BASE_DIR / 'db.sqlite3',
|
||
|
}
|
||
|
}
|