mirror of https://github.com/nitnelave/lldap.git
54 lines
728 B
Plaintext
54 lines
728 B
Plaintext
# Don't track git
|
|
.git/*
|
|
.github/*
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# 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
|
|
README.md
|
|
docs/*
|
|
example_configs/*
|
|
|
|
# Output of `npm install rollup`
|
|
node_modules/*
|
|
package-lock.json
|
|
package.json
|
|
|
|
# Pre-build binaries
|
|
*.tar.gz
|
|
|
|
# VSCode dirs
|
|
.vscode
|
|
.devcontainer
|
|
|
|
# Created databases
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
|
|
# These are backup files generated by rustfmt
|
|
**/*.rs.bk
|
|
|
|
# Various config files that shouldn't be tracked
|
|
.env
|
|
lldap_config.toml
|
|
server_key
|
|
screenshot.png
|
|
recipe.json
|
|
lldap_config.toml
|
|
cert.pem
|
|
key.pem
|