Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 584 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 584 Bytes

Django Energysystem Viewer

This app holds functionality to examine energysystem network, aggregations and search abbreviations.

Installation

Install app via pip (currently only as GitHub dependency):

pip install git+https://github.com/sedos-project/django_energysystem_viewer.git

Add app to your installed apps in django project settings:

DJANGO_APPS = [
    ...,
    "django_energysystem_viewer",
]

and add related urls in project urls.py like:

urlpatterns = [
    ...,
    path("", include("django_energysystem_viewer.urls")),
]