Skip to content
Snippets Groups Projects
Select Git revision
  • aa4e71861c4edaabf9b5853c27384c8334d69012
  • master default protected
  • 72-crop_production-has-been-added
  • Development_Branch_Tom
  • documentation
  • develop
  • ohlmeyer1-master-patch-01242
  • feature/pixi-overlay
  • 54-fix-ci-pipeline
  • lukas_issue051_feat_temporal-axis
  • lukas_issue050_feat_version-for-workflow-integration
  • lukas_issue052_tech_make-geocubeconnection-wcs-2-1-0-compatible
  • lukas_issue048_refac_restructure-project
  • lukas_issue002_feat_custom-errors
  • lukas_issue039_tech_stress-test
  • lukas_issue047_bug_geocube-no-missing-value
  • lukas_issue044_feat_missing-value
  • lukas_issue042_feat_new-app-population-250m
  • lukas_issue043_bug_query-crosses-anti-meridian
  • lukas_issue041_feat_new-app-built-up
  • lukas_issue040_feat_new-app-human-settlement
  • v0.9.0
  • v0.8.1
  • v0.8.0
  • v0.7.0
  • v0.6.1
  • v0.6.0
  • v0.5.0
  • v0.4.4
  • v0.4.3
  • v0.4.2
  • v0.4.1
  • v0.4.0
  • v0.3.1
  • v0.3.0
  • v0.2.0
  • v0.1.0
  • v0.0.4.devl
38 results

manage.py

Blame
  • user avatar
    leufen1 authored
    renamed Service to GeoLocationServices, disabled all services beside stable night lights, updated installation instructions
    63213e7e
    History
    manage.py 578 B
    #!/usr/bin/env python
    # -*- coding: utf-8 -*-
    
    import os
    import sys
    
    if __name__ == "__main__":
        os.environ.setdefault("DJANGO_SETTINGS_MODULE", "geo_location_services.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)