59 lines
561 B
Plaintext
59 lines
561 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
.eggs/
|
|
venv/
|
|
.venv/
|
|
env/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Data
|
|
data/
|
|
output/
|
|
|
|
# Docker
|
|
.docker/
|
|
|
|
# Test
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.hypothesis/
|
|
|
|
|
|
# API secret files
|
|
polygon.io.key
|
|
alpaca.key
|
|
alpaca.secret
|
|
alpaca.url
|
|
|
|
# Gitea OAuth2 credentials (generated by pipelines/gitea/setup.sh)
|
|
pipelines/gitea/gitea-oauth2.env
|
|
|
|
# Deploy scripts (live on gremlin-1, not in repo)
|
|
runmefirst.sh
|
|
runmelast.sh
|