Skip to content
Snippets Groups Projects
Select Git revision
  • 5187987e2eec53adcea6c0d24c3ef9b79f0f39af
  • master default protected
  • vertical_relations
  • lu_without_semantic_frames
  • hierarchy
  • additional-unification-filters
  • v0.1.1
  • v0.1.0
  • v0.0.9
  • v0.0.8
  • v0.0.7
  • v0.0.6
  • v0.0.5
  • v0.0.4
  • v0.0.3
  • v0.0.2
  • v0.0.1
17 results

manage.py

Blame
  • user avatar
    Kasia Krasnowska authored
    * added local filtering
    * added missing control heuristics and reporting for compar etc.
    * udpated phrase descriptions
    * switched to new Morfeusz homonym identifiers
    ca00bbcc
    History
    manage.py 543 B
    #!/usr/bin/env python
    import os
    import sys
    
    if __name__ == '__main__':
        os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'shellvalier.settings')
        try:
            from django.core.management import execute_from_command_line
        except ImportError as exc:
            raise ImportError(
                "Couldn't import Django. Are you sure it's installed and "
                "available on your PYTHONPATH environment variable? Did you "
                "forget to activate a virtual environment?"
            ) from exc
        execute_from_command_line(sys.argv)