From ea3164b762e5990b6d765121a7601537ddd35ef9 Mon Sep 17 00:00:00 2001 From: Jan Dittberner Date: Mon, 26 Jan 2015 17:07:31 +0100 Subject: [PATCH] remove Django dependencies as they are not used - move settings to gvafile.settings - use gvafile.settings directly without Django support - initialize Celery without Django - remove Django requirements --- docs/changelog.rst | 2 + docs/code.rst | 39 +--- docs/conf.py | 3 - docs/install.rst | 3 +- gvafile/fileservertasks/tasks.py | 2 +- gvafile/gvafile/celery.py | 12 +- gvafile/gvafile/settings.py | 45 ++++ gvafile/gvafile/settings/__init__.py | 3 - gvafile/gvafile/settings/base.py | 293 ------------------------- gvafile/gvafile/settings/local.py | 51 ----- gvafile/gvafile/settings/production.py | 50 ----- gvafile/gvafile/settings/test.py | 20 -- gvafile/gvafile/urls.py | 25 --- gvafile/gvafile/wsgi.py | 14 -- gvafile/manage.py | 10 - requirements/base.txt | 1 - requirements/local.txt | 2 - 17 files changed, 53 insertions(+), 522 deletions(-) create mode 100644 gvafile/gvafile/settings.py delete mode 100644 gvafile/gvafile/settings/__init__.py delete mode 100644 gvafile/gvafile/settings/base.py delete mode 100644 gvafile/gvafile/settings/local.py delete mode 100644 gvafile/gvafile/settings/production.py delete mode 100644 gvafile/gvafile/settings/test.py delete mode 100644 gvafile/gvafile/urls.py delete mode 100644 gvafile/gvafile/wsgi.py delete mode 100755 gvafile/manage.py diff --git a/docs/changelog.rst b/docs/changelog.rst index 496e4fc..ef77ef1 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,8 @@ Changelog ========= +* :support:`-` remove unneeded Django dependencies + * :release:`0.3.0 <2015-01-19>` * :support:`-` refactor osusers.tasks, move to fileservertasks.tasks diff --git a/docs/code.rst b/docs/code.rst index aafd591..87a7455 100644 --- a/docs/code.rst +++ b/docs/code.rst @@ -2,11 +2,8 @@ Code documentation ================== -.. index:: Django +gvafile is implemented as a set of `Celery`_ tasks. -gvafile is implemented as `Django`_ project and provides some `Celery`_ tasks. - -.. _Django: https://www.djangoproject.com/ .. _Celery: http://www.celeryproject.org/ @@ -23,57 +20,25 @@ The project module :py:mod:`gvafile` :members: -:py:mod:`urls ` ------------------------------ - -.. automodule:: gvafile.urls - - :py:mod:`exceptions ` ----------------------------------------- .. automodule:: gvafile.exceptions -:py:mod:`wsgi ` ------------------------------ - -.. automodule:: gvafile.wsgi - :members: - - :py:mod:`settings ` ------------------------------------- .. automodule:: gvafile.settings - -:py:mod:`base ` -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -.. automodule:: gvafile.settings.base :members: -:py:mod:`local ` -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -.. automodule:: gvafile.settings.local - -:py:mod:`production ` -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -.. automodule:: gvafile.settings.production - -:py:mod:`test ` -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -.. automodule:: gvafile.settings.test - :py:mod:`filservertasks` app ============================ .. automodule:: fileservertasks + :py:mod:`tasks ` --------------------------------------- diff --git a/docs/conf.py b/docs/conf.py index 279711e..a80d8cc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -14,7 +14,6 @@ import sys import os -import django # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the @@ -26,8 +25,6 @@ os.environ['GVAFILE_SERVER_EMAIL'] = 'root@localhost' os.environ['GVAFILE_SFTP_DIRECTORY'] = '/home/www' os.environ['GVAFILE_MAIL_DIRECTORY'] = '/home/mail' -django.setup() - # -- General configuration ----------------------------------------------------- # If your documentation needs a minimal Sphinx version, state it here. diff --git a/docs/install.rst b/docs/install.rst index ed35fa9..ced96ae 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -28,8 +28,7 @@ your virtualenv: .. _virtualenv: https://virtualenv.pypa.io/en/latest/ You will also need to ensure that the virtualenv has the project directory -added to the path. Adding the project directory will allow `django-admin.py` to -be able to change settings using the `--settings` flag. +added to the path. .. index:: virtualenvwrapper diff --git a/gvafile/fileservertasks/tasks.py b/gvafile/fileservertasks/tasks.py index 4a7105c..6761dae 100644 --- a/gvafile/fileservertasks/tasks.py +++ b/gvafile/fileservertasks/tasks.py @@ -9,7 +9,7 @@ from __future__ import absolute_import, unicode_literals import os import subprocess -from django.conf import settings +from gvafile import settings from celery import shared_task from celery.utils.log import get_task_logger diff --git a/gvafile/gvafile/celery.py b/gvafile/gvafile/celery.py index b8285f0..b3b21a2 100644 --- a/gvafile/gvafile/celery.py +++ b/gvafile/gvafile/celery.py @@ -6,18 +6,10 @@ This module defines the Celery_ app for gvafile. """ from __future__ import absolute_import -import os - from celery import Celery -from django.conf import settings - -os.environ.setdefault('DJANGO_SETTINGS_MODULE', - 'gvafile.settings.production') - - #: The Celery application app = Celery('gvafile') -app.config_from_object('django.conf:settings') -app.autodiscover_tasks(lambda: settings.INSTALLED_APPS) +app.config_from_object('gvafile.settings') +app.autodiscover_tasks(['fileservertasks'], force=True) diff --git a/gvafile/gvafile/settings.py b/gvafile/gvafile/settings.py new file mode 100644 index 0000000..d3418c4 --- /dev/null +++ b/gvafile/gvafile/settings.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +# pymode:lint_ignore=E501 +""" +Common settings and globals. + +""" + +from os import environ + + +def get_env_setting(setting): + """ + Get the environment setting or return exception. + + :param str setting: name of an environment setting + :raises ImproperlyConfigured: if the environment setting is not defined + :return: environment setting value + :rtype: str + """ + try: + return environ[setting] + except KeyError: + error_msg = "Set the %s env variable" % setting + raise AssertionError(error_msg) + + +########## CELERY CONFIGURATION +CELERY_TIMEZONE = 'Europe/Berlin' +CELERY_ENABLE_UTC = True +CELERY_RESULT_BACKEND = 'amqp' +CELERY_RESULT_PERSISTENT = True +CELERY_TASK_RESULT_EXPIRES = None +CELERY_ROUTES = ( + 'gvacommon.celeryrouters.GvaRouter', +) +CELERY_ACCEPT_CONTENT = ['json'] +CELERY_TASK_SERIALIZER = 'json' +CELERY_RESULT_SERIALIZER = 'json' +BROKER_URL = get_env_setting('GVAFILE_BROKER_URL') +########## END CELERY CONFIGURATION + +########## GVAFILE CONFIGURATION +GVAFILE_SFTP_DIRECTORY = get_env_setting('GVAFILE_SFTP_DIRECTORY') +GVAFILE_MAIL_DIRECTORY = get_env_setting('GVAFILE_MAIL_DIRECTORY') +########## END GVAFILE CONFIGURATION diff --git a/gvafile/gvafile/settings/__init__.py b/gvafile/gvafile/settings/__init__.py deleted file mode 100644 index 4f53a5e..0000000 --- a/gvafile/gvafile/settings/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -""" -This module contains settings for various environments. -""" diff --git a/gvafile/gvafile/settings/base.py b/gvafile/gvafile/settings/base.py deleted file mode 100644 index 81901a9..0000000 --- a/gvafile/gvafile/settings/base.py +++ /dev/null @@ -1,293 +0,0 @@ -# -*- coding: utf-8 -*- -# pymode:lint_ignore=E501 -""" -Common settings and globals. - -""" - -from os.path import abspath, basename, dirname, join, normpath -from sys import path -from os import environ - -# Normally you should not import ANYTHING from Django directly -# into your settings, but ImproperlyConfigured is an exception. -from django.core.exceptions import ImproperlyConfigured - - -def get_env_setting(setting): - """ - Get the environment setting or return exception. - - :param str setting: name of an environment setting - :raises ImproperlyConfigured: if the environment setting is not defined - :return: environment setting value - :rtype: str - """ - try: - return environ[setting] - except KeyError: - error_msg = "Set the %s env variable" % setting - raise ImproperlyConfigured(error_msg) - - -########## PATH CONFIGURATION -# Absolute filesystem path to the Django project directory: -DJANGO_ROOT = dirname(dirname(abspath(__file__))) - -# Absolute filesystem path to the top-level project folder: -SITE_ROOT = dirname(DJANGO_ROOT) - -# Site name: -SITE_NAME = basename(DJANGO_ROOT) - -# Add our project to our pythonpath, this way we don't need to type our project -# name in our dotted import paths: -path.append(DJANGO_ROOT) -########## END PATH CONFIGURATION - - -########## DEBUG CONFIGURATION -# See: https://docs.djangoproject.com/en/dev/ref/settings/#debug -DEBUG = False - -# See: https://docs.djangoproject.com/en/dev/ref/settings/#template-debug -TEMPLATE_DEBUG = DEBUG -########## END DEBUG CONFIGURATION - - -########## MANAGER CONFIGURATION -# See: https://docs.djangoproject.com/en/dev/ref/settings/#admins -ADMINS = ( - (get_env_setting('GVAFILE_ADMIN_NAME'), get_env_setting('GVAFILE_ADMIN_EMAIL')), -) - -# See: https://docs.djangoproject.com/en/dev/ref/settings/#managers -MANAGERS = ADMINS -########## END MANAGER CONFIGURATION - - -########## DATABASE CONFIGURATION -# See: https://docs.djangoproject.com/en/dev/ref/settings/#databases -DATABASES = { - 'default': { - 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': normpath(join(DJANGO_ROOT, 'default.db')), - 'USER': '', - 'PASSWORD': '', - 'HOST': '', - 'PORT': '', - }, -} -########## END DATABASE CONFIGURATION - - -########## GENERAL CONFIGURATION -# See: https://docs.djangoproject.com/en/dev/ref/settings/#time-zone -TIME_ZONE = 'Europe/Berlin' - -# See: https://docs.djangoproject.com/en/dev/ref/settings/#language-code -LANGUAGE_CODE = 'en-us' - -# See: https://docs.djangoproject.com/en/dev/ref/settings/#site-id -SITE_ID = 1 - -# See: https://docs.djangoproject.com/en/dev/ref/settings/#use-i18n -USE_I18N = True - -# See: https://docs.djangoproject.com/en/dev/ref/settings/#use-l10n -USE_L10N = True - -# See: https://docs.djangoproject.com/en/dev/ref/settings/#use-tz -USE_TZ = True -########## END GENERAL CONFIGURATION - - -########## MEDIA CONFIGURATION -# See: https://docs.djangoproject.com/en/dev/ref/settings/#media-root -MEDIA_ROOT = normpath(join(SITE_ROOT, 'media')) - -# See: https://docs.djangoproject.com/en/dev/ref/settings/#media-url -MEDIA_URL = '/media/' -########## END MEDIA CONFIGURATION - - -########## STATIC FILE CONFIGURATION -# See: https://docs.djangoproject.com/en/dev/ref/settings/#static-root -STATIC_ROOT = normpath(join(SITE_ROOT, 'assets')) - -# See: https://docs.djangoproject.com/en/dev/ref/settings/#static-url -STATIC_URL = '/static/' - -# See: https://docs.djangoproject.com/en/dev/ref/contrib/staticfiles/#std:setting-STATICFILES_DIRS -STATICFILES_DIRS = ( - normpath(join(SITE_ROOT, 'static')), -) - -# See: https://docs.djangoproject.com/en/dev/ref/contrib/staticfiles/#staticfiles-finders -STATICFILES_FINDERS = ( - 'django.contrib.staticfiles.finders.FileSystemFinder', - 'django.contrib.staticfiles.finders.AppDirectoriesFinder', -) -########## END STATIC FILE CONFIGURATION - - -########## SECRET CONFIGURATION -# See: https://docs.djangoproject.com/en/dev/ref/settings/#secret-key -# Note: This key should only be used for development and testing. -SECRET_KEY = get_env_setting('GVAFILE_SECRETKEY') -########## END SECRET CONFIGURATION - - -########## SITE CONFIGURATION -# Hosts/domain names that are valid for this site -# See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts -ALLOWED_HOSTS = [] -########## END SITE CONFIGURATION - - -########## FIXTURE CONFIGURATION -# See: https://docs.djangoproject.com/en/dev/ref/settings/#std:setting-FIXTURE_DIRS -FIXTURE_DIRS = ( - normpath(join(SITE_ROOT, 'fixtures')), -) -########## END FIXTURE CONFIGURATION - - -########## TEMPLATE CONFIGURATION -# See: https://docs.djangoproject.com/en/dev/ref/settings/#template-context-processors -TEMPLATE_CONTEXT_PROCESSORS = ( - 'django.contrib.auth.context_processors.auth', - 'django.core.context_processors.debug', - 'django.core.context_processors.i18n', - 'django.core.context_processors.media', - 'django.core.context_processors.static', - 'django.core.context_processors.tz', - 'django.contrib.messages.context_processors.messages', - 'django.core.context_processors.request', -) - -# See: https://docs.djangoproject.com/en/dev/ref/settings/#template-loaders -TEMPLATE_LOADERS = ( - 'django.template.loaders.filesystem.Loader', - 'django.template.loaders.app_directories.Loader', -) - -# See: https://docs.djangoproject.com/en/dev/ref/settings/#template-dirs -TEMPLATE_DIRS = ( - normpath(join(SITE_ROOT, 'templates')), -) -########## END TEMPLATE CONFIGURATION - - -########## MIDDLEWARE CONFIGURATION -# See: https://docs.djangoproject.com/en/dev/ref/settings/#middleware-classes -MIDDLEWARE_CLASSES = ( - # Default Django middleware. - 'django.middleware.common.CommonMiddleware', - 'django.contrib.sessions.middleware.SessionMiddleware', - 'django.middleware.csrf.CsrfViewMiddleware', - 'django.contrib.auth.middleware.AuthenticationMiddleware', - 'django.contrib.messages.middleware.MessageMiddleware', - 'django.middleware.clickjacking.XFrameOptionsMiddleware', -) -########## END MIDDLEWARE CONFIGURATION - - -########## URL CONFIGURATION -# See: https://docs.djangoproject.com/en/dev/ref/settings/#root-urlconf -ROOT_URLCONF = '%s.urls' % SITE_NAME -########## END URL CONFIGURATION - - -########## TEST RUNNER CONFIGURATION -TEST_RUNNER = 'django.test.runner.DiscoverRunner' -########## END TEST RUNNER CONFIGURATION - - -########## APP CONFIGURATION -DJANGO_APPS = ( - # Default Django apps: - 'django.contrib.auth', - 'django.contrib.contenttypes', - 'django.contrib.sessions', - 'django.contrib.sites', - 'django.contrib.messages', - 'django.contrib.staticfiles', - - # Useful template tags: - # 'django.contrib.humanize', - - # Admin panel and documentation: - 'django.contrib.admin', - # 'django.contrib.admindocs', -) - -# Apps specific for this project go here. -LOCAL_APPS = ( - 'fileservertasks', -) - -# See: https://docs.djangoproject.com/en/dev/ref/settings/#installed-apps -INSTALLED_APPS = DJANGO_APPS + LOCAL_APPS -########## END APP CONFIGURATION - - -########## LOGGING CONFIGURATION -# See: https://docs.djangoproject.com/en/dev/ref/settings/#logging -# A sample logging configuration. The only tangible logging -# performed by this configuration is to send an email to -# the site admins on every HTTP 500 error when DEBUG=False. -# See http://docs.djangoproject.com/en/dev/topics/logging for -# more details on how to customize your logging configuration. -LOGGING = { - 'version': 1, - 'disable_existing_loggers': False, - 'filters': { - 'require_debug_false': { - '()': 'django.utils.log.RequireDebugFalse' - } - }, - 'handlers': { - 'mail_admins': { - 'level': 'ERROR', - 'filters': ['require_debug_false'], - 'class': 'django.utils.log.AdminEmailHandler' - } - }, - 'loggers': { - 'django.request': { - 'handlers': ['mail_admins'], - 'level': 'ERROR', - 'propagate': True, - }, - } -} -########## END LOGGING CONFIGURATION - - -########## WSGI CONFIGURATION -# See: https://docs.djangoproject.com/en/dev/ref/settings/#wsgi-application -WSGI_APPLICATION = '%s.wsgi.application' % SITE_NAME -########## END WSGI CONFIGURATION - - -########## GVAFILE CONFIGURATION -GVAFILE_SFTP_DIRECTORY = get_env_setting('GVAFILE_SFTP_DIRECTORY') -GVAFILE_MAIL_DIRECTORY = get_env_setting('GVAFILE_MAIL_DIRECTORY') -########## END GVAFILE CONFIGURATION - - -########## CELERY CONFIGURATION -BROKER_URL = get_env_setting('GVAFILE_BROKER_URL') -CELERY_RESULT_BACKEND = 'amqp' -CELERY_RESULT_PERSISTENT = True -CELERY_TASK_RESULT_EXPIRES = None -CELERY_ROUTES = ( - 'gvacommon.celeryrouters.GvaRouter', -) -CELERY_TIMEZONE = 'Europe/Berlin' -CELERY_ENABLE_UTC = True -CELERY_ACCEPT_CONTENT = ['json'] -CELERY_TASK_SERIALIZER = 'json' -CELERY_RESULT_SERIALIZER = 'json' -########## END CELERY CONFIGURATION diff --git a/gvafile/gvafile/settings/local.py b/gvafile/gvafile/settings/local.py deleted file mode 100644 index dbd4381..0000000 --- a/gvafile/gvafile/settings/local.py +++ /dev/null @@ -1,51 +0,0 @@ -# pymode:lint_ignore=W0401,E501 -""" -Development settings and globals based on :py:mod:`gvafile.settings.base`. - -""" - -from __future__ import absolute_import - -from .base import * - - -########## DEBUG CONFIGURATION -# See: https://docs.djangoproject.com/en/dev/ref/settings/#debug -DEBUG = True - -# See: https://docs.djangoproject.com/en/dev/ref/settings/#template-debug -TEMPLATE_DEBUG = DEBUG -########## END DEBUG CONFIGURATION - - -########## EMAIL CONFIGURATION -# See: https://docs.djangoproject.com/en/dev/ref/settings/#email-backend -EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' -########## END EMAIL CONFIGURATION - - -########## CACHE CONFIGURATION -# See: https://docs.djangoproject.com/en/dev/ref/settings/#caches -CACHES = { - 'default': { - 'BACKEND': 'django.core.cache.backends.locmem.LocMemCache', - } -} -########## END CACHE CONFIGURATION - - -########## TOOLBAR CONFIGURATION -# See: http://django-debug-toolbar.readthedocs.org/en/latest/installation.html#explicit-setup -INSTALLED_APPS += ( - 'debug_toolbar', -) - -MIDDLEWARE_CLASSES += ( - 'debug_toolbar.middleware.DebugToolbarMiddleware', -) - -DEBUG_TOOLBAR_PATCH_SETTINGS = False - -# http://django-debug-toolbar.readthedocs.org/en/latest/installation.html -INTERNAL_IPS = ('127.0.0.1',) -########## END TOOLBAR CONFIGURATION diff --git a/gvafile/gvafile/settings/production.py b/gvafile/gvafile/settings/production.py deleted file mode 100644 index 4419785..0000000 --- a/gvafile/gvafile/settings/production.py +++ /dev/null @@ -1,50 +0,0 @@ -# pymode:lint_ignore=W0401,E501 -""" -Production settings and globals based on :py:mod:`gvafile.settings.base`. - -""" - -from __future__ import absolute_import - -from .base import * - -########## HOST CONFIGURATION -# See: https://docs.djangoproject.com/en/1.5/releases/1.5/#allowed-hosts-required-in-production -ALLOWED_HOSTS = get_env_setting('GVAFILE_ALLOWED_HOSTS').split(',') -########## END HOST CONFIGURATION - -########## EMAIL CONFIGURATION -# See: https://docs.djangoproject.com/en/dev/ref/settings/#email-backend -EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' - -# See: https://docs.djangoproject.com/en/dev/ref/settings/#email-host -#EMAIL_HOST = environ.get('EMAIL_HOST', 'smtp.gmail.com') - -# See: https://docs.djangoproject.com/en/dev/ref/settings/#email-host-password -#EMAIL_HOST_PASSWORD = environ.get('EMAIL_HOST_PASSWORD', '') - -# See: https://docs.djangoproject.com/en/dev/ref/settings/#email-host-user -#EMAIL_HOST_USER = environ.get('EMAIL_HOST_USER', 'your_email@example.com') - -# See: https://docs.djangoproject.com/en/dev/ref/settings/#email-port -#EMAIL_PORT = environ.get('EMAIL_PORT', 587) - -# See: https://docs.djangoproject.com/en/dev/ref/settings/#email-subject-prefix -EMAIL_SUBJECT_PREFIX = '[%s] ' % SITE_NAME - -# See: https://docs.djangoproject.com/en/dev/ref/settings/#email-use-tls -#EMAIL_USE_TLS = True - -# See: https://docs.djangoproject.com/en/dev/ref/settings/#server-email -SERVER_EMAIL = get_env_setting('GVAFILE_SERVER_EMAIL') -########## END EMAIL CONFIGURATION - -########## DATABASE CONFIGURATION -#DATABASES = {} -########## END DATABASE CONFIGURATION - - -########## CACHE CONFIGURATION -# See: https://docs.djangoproject.com/en/dev/ref/settings/#caches -#CACHES = {} -########## END CACHE CONFIGURATION diff --git a/gvafile/gvafile/settings/test.py b/gvafile/gvafile/settings/test.py deleted file mode 100644 index a132e85..0000000 --- a/gvafile/gvafile/settings/test.py +++ /dev/null @@ -1,20 +0,0 @@ -# pymode:lint_ignore=W0401 -""" -Test settings based on :py:mod:`gvafile.settings.base`. - -""" -from __future__ import absolute_import - -from .base import * - -########## IN-MEMORY TEST DATABASE -DATABASES = { - "default": { - "ENGINE": "django.db.backends.sqlite3", - "NAME": ":memory:", - "USER": "", - "PASSWORD": "", - "HOST": "", - "PORT": "", - }, -} diff --git a/gvafile/gvafile/urls.py b/gvafile/gvafile/urls.py deleted file mode 100644 index ca59fb7..0000000 --- a/gvafile/gvafile/urls.py +++ /dev/null @@ -1,25 +0,0 @@ -""" -This module defines the main URLConf for gvaldap. - -""" - -from django.conf.urls import patterns, include, url -from django.conf import settings - -# Uncomment the next two lines to enable the admin: -from django.contrib import admin -admin.autodiscover() - -urlpatterns = patterns( - '', - url(r'^admin/', include(admin.site.urls)), -) - -# Uncomment the next line to serve media files in dev. -# urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) - -if settings.DEBUG: - import debug_toolbar - urlpatterns += patterns('', - url(r'^__debug__/', include(debug_toolbar.urls)), - ) diff --git a/gvafile/gvafile/wsgi.py b/gvafile/gvafile/wsgi.py deleted file mode 100644 index 41fde2d..0000000 --- a/gvafile/gvafile/wsgi.py +++ /dev/null @@ -1,14 +0,0 @@ -""" -WSGI config for gvafile project. - -It exposes the WSGI callable as a module-level variable named ``application``. - -For more information on this file, see -https://docs.djangoproject.com/en/1.6/howto/deployment/wsgi/ -""" - -import os -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "gvafile.settings") - -from django.core.wsgi import get_wsgi_application -application = get_wsgi_application() diff --git a/gvafile/manage.py b/gvafile/manage.py deleted file mode 100755 index 3970649..0000000 --- a/gvafile/manage.py +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env python -import os -import sys - -if __name__ == "__main__": - os.environ.setdefault("DJANGO_SETTINGS_MODULE", "gvafile.settings") - - from django.core.management import execute_from_command_line - - execute_from_command_line(sys.argv) diff --git a/requirements/base.txt b/requirements/base.txt index 776286d..d83710b 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,4 +1,3 @@ -Django==1.7.1 amqp==1.4.6 bpython==0.13.1 anyjson==0.3.3 diff --git a/requirements/local.txt b/requirements/local.txt index 4bdfc63..aeaec92 100644 --- a/requirements/local.txt +++ b/requirements/local.txt @@ -1,7 +1,5 @@ # Local development dependencies go here -r base.txt coverage==3.7.1 -django-debug-toolbar==1.2.2 Sphinx==1.2.3 -sqlparse==0.1.14 releases==0.7.0