Skip to content
Snippets Groups Projects
Select Git revision
2 results Searching

__init__.py

Blame
  • Forked from KIF / AKPlanning
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Makefile 286 B
    all: localecompile
    LNGS:=`find pretix_keycloak_create_user/locale/ -mindepth 1 -maxdepth 1 -type d -printf "-l %f "`
    
    localecompile:
    	django-admin compilemessages
    
    localegen:
    	django-admin makemessages --keep-pot -i build -i dist -i "*egg*" $(LNGS)
    
    .PHONY: all localecompile localegen