## From .gitignore
# Server config files
.env
development.env

# all the tests
tests/

# IDE
Session.vim

# nonsense
.DS_Store
/.pre-commit-config.yaml
node_modules
target


# git history
/.git/

# MSVC debug files
*.pdb

# Sometimes convenient to have a tempdir for files not tracked by git
tmp/

## Docker-specific ignores
Dockerfile
.dockerignore
/docker
/docker-compose.yml
/testing-docker-compose.yml

# not part of the code
/.config
/docs
/scripts
/README.md
/Claude.md
/justfile

# non-rust clients
/z-clients
!/z-clients/rust/
!/z-clients/cli/

# data files generated by the application
/db/
/logs

# configuration that we don't need in the container
/example-configs
/.github
