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
9 changes: 0 additions & 9 deletions .env

This file was deleted.

8 changes: 3 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,9 @@ build/
.venv/
venv/

# Personal env overrides — the tracked .env carries shared dev-convenience
# vars (PYTHONDONTWRITEBYTECODE etc.); .env.local is for per-developer extras
# and stays out of git. Don't put secrets in either; floodgate has no secret
# config.
.env.local
# Local env files — never commit. Even if floodgate has no required secrets,
# treating dotenv files as private prevents accidental leaks.
.env*

# Test caches and coverage artefacts
.pytest_cache/
Expand Down
6 changes: 2 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,8 @@ Every PR and push to `main` runs five jobs in sequence:
### Running locally

```bash
# Source the project .env once per shell to pick up dev-convenience vars
# (currently just PYTHONDONTWRITEBYTECODE=1 to keep __pycache__ out of the
# working tree). direnv users can skip this — direnv loads it automatically.
set -a; . ./.env; set +a
# Optional: keep __pycache__ out of the working tree.
export PYTHONDONTWRITEBYTECODE=1

# Unit tests (fast, no Docker needed). Protobuf-dependent tests skip
# automatically if you haven't generated stubs yet.
Expand Down
Loading