7 lines
187 B
Python
7 lines
187 B
Python
# config.py
|
|
import os
|
|
|
|
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
DATA_DIR = os.path.join(BASE_DIR, 'app/tables')
|
|
MONSTERS_JSON_PATH = os.path.join(DATA_DIR, 'creatures.json')
|