https://github.com/byceps/byceps
Raw File
Tip revision: 1816cfac7a6812598318bfbb016c4256e13440d7 authored by Jochen Kupperschmidt on 12 September 2024, 07:24:31 UTC
Fix type conversion
Tip revision: 1816cfa
.gitignore
# Python 3 bytecode
__pycache__

/.eggs

# virtual environment
/.venv
/venv

# autoenv
.autoenv
.autoenv.leave
.env
.env.leave

# test-related
/.coverage
/.pytest_cache
*.egg-info

# cache data
.cache
.mypy_cache

# user data
/data

# documentation
/docs/_build

# custom configurations
/config/*
!/config/apps_example.toml
!/config/development_example.toml
!/config/production_example.toml

secret_key.txt
back to top