Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -206,3 +206,6 @@ marimo/_static/
marimo/_lsp/
__marimo__/
*.pkl

.flash/
.runpod/
4 changes: 4 additions & 0 deletions 03_advanced_workers/05_load_balancer/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# FLASH_HOST=localhost
# FLASH_PORT=8888
# LOG_LEVEL=INFO
# RUNPOD_API_KEY=your_api_key_here
40 changes: 40 additions & 0 deletions 03_advanced_workers/05_load_balancer/.flashignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Flash Build Ignore Patterns

# Python cache
__pycache__/
*.pyc

# Virtual environments
venv/
.venv/
env/

# IDE
.vscode/
.idea/

# Environment files
.env
.env.local

# Git
.git/
.gitignore

# Build artifacts
dist/
build/
*.egg-info/

# Flash resources
.tetra_resources.pkl

# Tests
tests/
test_*.py
*_test.py

# Documentation
docs/
*.md
!README.md
44 changes: 44 additions & 0 deletions 03_advanced_workers/05_load_balancer/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
.venv/
ENV/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# IDEs
.vscode/
.idea/
*.swp
*.swo
*~

# Environment
.env
.env.local

# Flash
.tetra_resources.pkl
dist/

# OS
.DS_Store
Thumbs.db
Loading