diff options
Diffstat (limited to 'pharos-dashboard/pharos_dashboard')
-rw-r--r-- | pharos-dashboard/pharos_dashboard/__init__.py | 10 | ||||
-rw-r--r-- | pharos-dashboard/pharos_dashboard/celery.py | 10 | ||||
-rw-r--r-- | pharos-dashboard/pharos_dashboard/urls.py | 10 | ||||
-rw-r--r-- | pharos-dashboard/pharos_dashboard/wsgi.py | 10 |
4 files changed, 40 insertions, 0 deletions
diff --git a/pharos-dashboard/pharos_dashboard/__init__.py b/pharos-dashboard/pharos_dashboard/__init__.py index b6fc817..f104c4d 100644 --- a/pharos-dashboard/pharos_dashboard/__init__.py +++ b/pharos-dashboard/pharos_dashboard/__init__.py @@ -1,3 +1,13 @@ +############################################################################## +# Copyright (c) 2016 Max Breitenfeldt and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + + # This will make sure the app is always imported when # Django starts so that shared_task will use this app. from .celery import app as celery_app # noqa diff --git a/pharos-dashboard/pharos_dashboard/celery.py b/pharos-dashboard/pharos_dashboard/celery.py index 4cf6a7a..f60f243 100644 --- a/pharos-dashboard/pharos_dashboard/celery.py +++ b/pharos-dashboard/pharos_dashboard/celery.py @@ -1,3 +1,13 @@ +############################################################################## +# Copyright (c) 2016 Max Breitenfeldt and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + + import os from celery import Celery diff --git a/pharos-dashboard/pharos_dashboard/urls.py b/pharos-dashboard/pharos_dashboard/urls.py index 4a9d914..adcb5b8 100644 --- a/pharos-dashboard/pharos_dashboard/urls.py +++ b/pharos-dashboard/pharos_dashboard/urls.py @@ -1,3 +1,13 @@ +############################################################################## +# Copyright (c) 2016 Max Breitenfeldt and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + + """pharos_dashboard URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: diff --git a/pharos-dashboard/pharos_dashboard/wsgi.py b/pharos-dashboard/pharos_dashboard/wsgi.py index b127751..3d43361 100644 --- a/pharos-dashboard/pharos_dashboard/wsgi.py +++ b/pharos-dashboard/pharos_dashboard/wsgi.py @@ -1,3 +1,13 @@ +############################################################################## +# Copyright (c) 2016 Max Breitenfeldt and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + + """ WSGI config for pharos_dashboard project. |