mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00
40 lines
556 B
Plaintext
40 lines
556 B
Plaintext
# Don't track git
|
|
.git/*
|
|
.github/*
|
|
.gitignore
|
|
|
|
# Don't track cargo generated files
|
|
target/*
|
|
|
|
# Don't track the generated JS
|
|
app/pkg/*
|
|
|
|
# Don't track changes to the Dockerfile, triggering a rebuild without cache
|
|
Dockerfile
|
|
.dockerignore
|
|
|
|
# Don't track docs
|
|
*.md
|
|
LICENSE
|
|
CHANGELOG.md
|
|
docs/*
|
|
example_configs/*
|
|
|
|
# Output of `npm install rollup`
|
|
node_modules/*
|
|
package-lock.json
|
|
package.json
|
|
|
|
# Pre-build binaries
|
|
*.tar.gz
|
|
|
|
# Various config files that shouldn't be tracked
|
|
.env
|
|
lldap_config.toml
|
|
server_key
|
|
users.db*
|
|
screenshot.png
|
|
recipe.json
|
|
cert.pem
|
|
key.pem
|