3fd72705fc
- Added new targets in the Makefile for validation, including `run-validation`, `validate-check`, and `validate-kill`, to streamline the testing process with external tools like SteamPrefill. - Introduced a `setcap` target to manage necessary capabilities for running the server on port 80 without root access. - Updated README.md to include detailed instructions for validating functionality, including quick start guides and troubleshooting tips. - Improved .gitignore to exclude validation artifacts and logs, ensuring a cleaner repository.
32 lines
411 B
Plaintext
32 lines
411 B
Plaintext
#build artifacts
|
|
/dist/
|
|
/bin/
|
|
steamcache2
|
|
|
|
# Downloaded SteamPrefill client simulator (auto-managed by make client)
|
|
/bin/steam-prefill/*
|
|
!/bin/steam-prefill/.gitkeep
|
|
/plans/
|
|
|
|
#validation artifacts
|
|
/validate-disk/
|
|
/disk/
|
|
|
|
#logs
|
|
*.log
|
|
|
|
#config file
|
|
/config.yaml
|
|
|
|
#windows executables
|
|
*.exe
|
|
|
|
#test cache
|
|
/steamcache/test_cache/*
|
|
!/steamcache/test_cache/.gitkeep
|
|
|
|
# Test artifacts and coverage
|
|
coverage.out
|
|
*.test
|
|
|