mirror of
https://github.com/lldap/lldap.git
synced 2024-11-24 08:45:08 +00:00
25 lines
400 B
Text
25 lines
400 B
Text
# Don't track git
|
|
.git/*
|
|
.github/*
|
|
.gitignore
|
|
|
|
# Don't track cargo generated files
|
|
target/*
|
|
server/target/*
|
|
app/target/*
|
|
auth/target/*
|
|
|
|
# Don't track the generated JS
|
|
app/pkg/*
|
|
|
|
# Don't track changes to the Dockerfile, triggering a rebuild without cache
|
|
Dockerfile
|
|
.dockerignore
|
|
|
|
# Various config files that shouldn't be tracked
|
|
lldap_config.toml
|
|
server_key
|
|
users.db*
|
|
screenshot.png
|
|
recipe.json
|
|
*.md
|