A 5e storytelling engine with an LLM DM
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 68 lines 606 B view raw
1# Python 2__pycache__/ 3*.py[cod] 4*$py.class 5*.so 6.Python 7build/ 8develop-eggs/ 9dist/ 10downloads/ 11eggs/ 12.eggs/ 13lib/ 14lib64/ 15parts/ 16sdist/ 17var/ 18wheels/ 19*.egg-info/ 20.installed.cfg 21*.egg 22 23# Virtual environments 24.venv/ 25venv/ 26ENV/ 27 28# IDE 29.idea/ 30.vscode/ 31*.swp 32*.swo 33*~ 34 35# Testing 36.tox/ 37.nox/ 38.coverage 39.coverage.* 40htmlcov/ 41.pytest_cache/ 42.mypy_cache/ 43 44# Build 45*.manifest 46*.spec 47 48# Misc 49.DS_Store 50Thumbs.db 51*.log 52 53# Environment 54.env 55.env.local 56.envrc.private 57 58# Game data (generated/personal) 59worlds/* 60!worlds/.gitkeep 61players/* 62!players/.gitkeep 63 64# Search indexes (build artifacts) 65search.db 66 67# loq cache 68.loq_cache