22 lines
861 B
Plaintext
22 lines
861 B
Plaintext
# def/ — the "default" scratch bucket: always gitignored, never versioned
|
|
def
|
|
|
|
# local env (commit the .env.example, never the .env)
|
|
.env
|
|
.env.local
|
|
ctrl/.env
|
|
|
|
# generated: the .dot is a build artifact rendered from arch/*.json, never hand-edited.
|
|
# The .svg IS committed — onboarding material should render in a repo browser.
|
|
arch/*.dot
|
|
# ctrl/Tiltfile.gen was here for a generator that no longer exists. ctrl/Tiltfile
|
|
# is now a real, committed file that derives its values when Tilt parses it, so
|
|
# there is nothing generated to ignore.
|
|
|
|
# binaries pulled by `make deps-bundle` for the air-gapped installer image
|
|
vendor
|
|
|
|
# Client rigs are NOT ignored here. A copy is a SIBLING of this directory
|
|
# (../acme-rig), so a rule in this file cannot see it — the rules live in the
|
|
# parent repo's .gitignore, anchored at its root, where `*-rig/` matches them.
|