- Added Taskfile.yml to streamline build, development, and testing tasks. - Updated README to reflect new build instructions and development environment setup using `go-task`. - Included `.taskfile.env` and `.task` in .dockerignore and .gitignore for better environment management. - Modified asset loading in verifier.ts to include integrity and cross-origin attributes for security. - Updated SRI generation script to handle both directory and single file inputs for improved flexibility.
30 lines
346 B
Plaintext
30 lines
346 B
Plaintext
.git
|
|
.gitignore
|
|
Dockerfile
|
|
.dockerignore
|
|
|
|
# Go
|
|
vendor/
|
|
software-station
|
|
*.out
|
|
*.test
|
|
coverage.out
|
|
|
|
# Frontend
|
|
node_modules/
|
|
frontend/node_modules/
|
|
frontend/build/
|
|
frontend/.svelte-kit/
|
|
|
|
# Application Data
|
|
.cache/
|
|
.salt
|
|
hashes.json
|
|
test_software.txt
|
|
test_hashes.json
|
|
test-hashes.json
|
|
test_updater.txt
|
|
test_handlers_hashes.json
|
|
|
|
.taskfile.env
|
|
.task |