Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions data-feeds/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
.PHONY: preview-staging
preview-staging:
iron-flask deploy-confluent -e staging -c ./iron-flask-data-feeds.yaml --preview

.PHONY: deploy-staging
deploy-staging:
iron-flask deploy-confluent -e staging -c ./iron-flask-data-feeds.yaml

.PHONY: destroy-staging
destroy-staging:
iron-flask deploy-confluent -e staging -c ./iron-flask-data-feeds.yaml --destroy

.PHONY: preview-prod
preview-prod:
iron-flask deploy-confluent -e prod -c ./iron-flask-data-feeds.yaml --preview

.PHONY: deploy-prod
deploy-prod:
iron-flask deploy-confluent -e prod -c ./iron-flask-data-feeds.yaml

.PHONY: destroy-prod
destroy-prod:
iron-flask deploy-confluent -e prod -c ./iron-flask-data-feeds.yaml --destroy

.PHONY: clean
clean: ## Remove generated files
find . -name '*.pb.go' -delete

.PHONY: generate
generate: clean ## Generate go-proto files
go generate ./...
Loading