A community based topic aggregation platform built on atproto
at main 446 B view raw
1# Git 2.git 3.gitignore 4 5# Python 6__pycache__ 7*.py[cod] 8*$py.class 9*.so 10.Python 11venv/ 12*.egg-info 13dist/ 14build/ 15 16# Testing 17.pytest_cache/ 18.coverage 19htmlcov/ 20.tox/ 21.hypothesis/ 22 23# IDE 24.vscode/ 25.idea/ 26*.swp 27*.swo 28*~ 29 30# Environment 31.env.local 32.env.*.local 33 34# Data and logs 35data/ 36*.log 37 38# Documentation 39README.md 40docs/ 41 42# Docker 43Dockerfile 44docker-compose.yml 45.dockerignore 46 47# Development 48tests/ 49pytest.ini 50mypy.ini 51.mypy_cache/ 52 53# OS 54.DS_Store 55Thumbs.db