DungeonMaster / filepaths.py
pikaduck's picture
Streamlit UI for landing page & building character ready; supports hard-coded prompt based avatar generation using stable diffusion hosted in colab
4eb8ef9
raw
history blame contribute delete
230 Bytes
import os
PROJECT_DIR = os.path.split(__file__)[0]
print(f'PROJECT_DIR : {PROJECT_DIR}')
ASSETS = os.path.join(PROJECT_DIR, 'assets')
LOGO_PATH = os.path.join(ASSETS, 'logo.jpg')
POSTER_PATH = os.path.join(ASSETS, 'poster.jpg')