fleet-telemetry icon indicating copy to clipboard operation
fleet-telemetry copied to clipboard

Remove example keys as a best practice

Open aaronpkahn opened this issue 2 years ago • 1 comments

Removing example keys, so that no one accidentally uses a shared example key. If a user generates their own key, at least it won't be a key others have access to.

aaronpkahn avatar Jun 19 '23 21:06 aaronpkahn

https://github.com/teslamotors/fleet-telemetry/blob/main/Makefile#L47

change this to

integration: generate-certs
	@echo "** RUNNING INTEGRATION TESTS **"
	./test/integration/pretest.sh
	docker-compose -p app -f docker-compose.yml build
	docker-compose -p app -f docker-compose.yml up -d --remove-orphans
	./test/integration/test.sh
	docker-compose -p app -f docker-compose.yml down
	@echo "** INTEGRATION TESTS FINISHED **"

agbpatro avatar Jun 19 '23 21:06 agbpatro