e11sync

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | LICENSE

Makefile (458B) - Raw


      1 # unit tests independent of your environment. Aspires to be the default CI job.
      2 .PHONY: check
      3 test:
      4 	nix flake check
      5 
      6 .PHONY: format
      7 format:
      8 	autopep8 -a -a --recursive --in-place --exclude app/signup/migrations app
      9 
     10 .PHONY: run
     11 run:
     12 	app/manage.py runserver
     13 
     14 .PHONY: run-backend
     15 run-backend:
     16 	nix run .#e11sync-backend
     17 
     18 .PHONY: run-frontend
     19 run-frontend:
     20 	nix run .#e11sync-caddyfile
     21 
     22 .PHONY: vm
     23 vm:
     24 	nix run .#nixosConfigurations.vm.config.system.build.vm