Makefile 403 B

1234567891011121314
  1. PROJECT = token_bucket
  2. PROJECT_DESCRIPTION = token_bucket RPS limitation application
  3. PROJECT_VERSION = 0.1.0
  4. CT_SUITES = limit_reached
  5. include erlang.mk
  6. run:
  7. erl -pa ebin +pc unicode -args_file vm.args -config sys.config -eval 'application:start(token_bucket)'
  8. # add -pa ebin in erl .. command because no deps with nested structure
  9. # and no ERL_LIBS="apps:deps" before erl .. command
  10. .PHONY: run