2021-06-30 14:54:33 +00:00
|
|
|
# Don't track git
|
|
|
|
.git/*
|
2021-11-20 14:17:12 +00:00
|
|
|
.github/*
|
|
|
|
.gitignore
|
2021-06-30 14:54:33 +00:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2021-11-29 08:38:51 +00:00
|
|
|
# Don't track docs
|
2021-12-08 09:58:17 +00:00
|
|
|
*.md
|
2021-11-29 08:38:51 +00:00
|
|
|
LICENSE
|
|
|
|
docs/*
|
2021-12-08 09:20:18 +00:00
|
|
|
example_configs/*
|
2021-11-29 08:38:51 +00:00
|
|
|
|
2021-12-08 09:58:17 +00:00
|
|
|
# Output of `npm install rollup`
|
|
|
|
node_modules/*
|
|
|
|
package-lock.json
|
|
|
|
package.json
|
|
|
|
|
|
|
|
# Pre-build binaries
|
|
|
|
*.tar.gz
|
|
|
|
|
2021-06-30 14:54:33 +00:00
|
|
|
# Various config files that shouldn't be tracked
|
2021-12-08 09:58:17 +00:00
|
|
|
.env
|
2021-06-30 14:54:33 +00:00
|
|
|
lldap_config.toml
|
|
|
|
server_key
|
|
|
|
users.db*
|
2021-10-15 13:09:17 +00:00
|
|
|
screenshot.png
|
2021-11-20 14:17:12 +00:00
|
|
|
recipe.json
|