Makefile 289 B

12345678910111213141516171819
  1. default: test-install test-run
  2. test-install:
  3. npm install --no-fund
  4. test-run:
  5. ./node_modules/.bin/mocha -t 10000
  6. nginx:
  7. podman-compose up -d nginx
  8. clean:
  9. podman-compose down
  10. getsnapshot:
  11. rm -rf /opt/OliveTin-snapshot/*
  12. gh run download -D /opt/OliveTin-snapshot/
  13. .PHONY: default