码迷,mamicode.com
首页 > 其他好文 > 详细

oscar 2.0.1安装

时间:2019-08-29 16:16:50      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:error:   templates   exp   style   database   arc   not   tde   debug   

mkvirtualenv oscar
pip3 install django-oscar
django-admin.py startproject frobshop

修改配置文件参考

https://django-oscar.readthedocs.io/en/2.0.1/internals/getting_started.html
 

 pip3 install sorl-thumbnail     //如果报找不到模块sorl,就安装这个
 pip3 install pysolr
 python3 manage.py migrate
 python3 manage.py runserver

此时就可以访问了.

http://localhost:8000.

 

pip3 install pycountry
[...]
python3 manage.py oscar_populate_countries --no-shipping

 

(oscar) root@Tahr:~/frobshop# cat manage.py 
#!/usr/bin/env python3
import os
import sys

if __name__ == "__main__":
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "frobshop.settings")
    try:
        from django.core.management import execute_from_command_line
    except ImportError:
        # The above import may fail for some other reason. Ensure that the
        # issue is really that Django is missing to avoid masking other
        # exceptions on Python 2.
        try:
            import django
        except ImportError:
            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?"
            )
        raise
    execute_from_command_line(sys.argv)

 

(oscar) root@Tahr:~/frobshop/frobshop# cat settings.py 
"""
Django settings for frobshop project.

Generated by ‘django-admin startproject‘ using Django 1.11.22.

For more information on this file, see
https://docs.djangoproject.com/en/1.11/topics/settings/

For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.11/ref/settings/
"""

import os
from oscar.defaults import *

#env = os.environ.Env()

location = lambda x: os.path.join(os.path.dirname(os.path.realpath(__file__)), x)

#ALLOWED_HOSTS = env.list(‘ALLOWED_HOSTS‘, default=[‘localhost‘, ‘127.0.0.1‘])

# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))


# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.11/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 34fllfl$@3^09$m1si55x%t8$he#4zz2)&&px^99k5$hakda9p

# SECURITY WARNING: don‘t run with debug turned on in production!
DEBUG = True

ALLOWED_HOSTS = []


# Application definition

INSTALLED_APPS = [
    django.contrib.admin,
    django.contrib.auth,
    django.contrib.contenttypes,
    django.contrib.sessions,
    django.contrib.messages,
    django.contrib.staticfiles,

    django.contrib.sites,
    django.contrib.flatpages,

    oscar,
    oscar.apps.analytics,
    oscar.apps.checkout,
    oscar.apps.address,
    oscar.apps.shipping,
    oscar.apps.catalogue,
    oscar.apps.catalogue.reviews,
    oscar.apps.partner,
    oscar.apps.basket,
    oscar.apps.payment,
    oscar.apps.offer,
    oscar.apps.order,
    oscar.apps.customer,
    oscar.apps.search,
    oscar.apps.voucher,
    oscar.apps.wishlists,
    oscar.apps.dashboard,
    oscar.apps.dashboard.reports,
    oscar.apps.dashboard.users,
    oscar.apps.dashboard.orders,
    oscar.apps.dashboard.catalogue,
    oscar.apps.dashboard.offers,
    oscar.apps.dashboard.partners,
    oscar.apps.dashboard.pages,
    oscar.apps.dashboard.ranges,
    oscar.apps.dashboard.reviews,
    oscar.apps.dashboard.vouchers,
    oscar.apps.dashboard.communications,
    oscar.apps.dashboard.shipping,

    # 3rd-party apps that oscar depends on
    widget_tweaks,
    haystack,
    treebeard,
    sorl.thumbnail,
    django_tables2,
]

SITE_ID = 1

MIDDLEWARE = [
    django.middleware.security.SecurityMiddleware,
    django.contrib.sessions.middleware.SessionMiddleware,
    django.middleware.common.CommonMiddleware,
    django.middleware.csrf.CsrfViewMiddleware,
    django.contrib.auth.middleware.AuthenticationMiddleware,
    django.contrib.messages.middleware.MessageMiddleware,
    django.middleware.clickjacking.XFrameOptionsMiddleware,

    oscar.apps.basket.middleware.BasketMiddleware,
    django.contrib.flatpages.middleware.FlatpageFallbackMiddleware,
]

ROOT_URLCONF = frobshop.urls

TEMPLATES = [
    {
        BACKEND: django.template.backends.django.DjangoTemplates,
        DIRS: [],
        APP_DIRS: True,
        OPTIONS: {
            context_processors: [
                django.template.context_processors.debug,
                django.template.context_processors.request,
                django.contrib.auth.context_processors.auth,
                django.contrib.messages.context_processors.messages,
                oscar.apps.search.context_processors.search_form,
                oscar.apps.checkout.context_processors.checkout,
                oscar.apps.customer.notifications.context_processors.notifications,
                oscar.core.context_processors.metadata,
            ],
        },
    },
]

WSGI_APPLICATION = frobshop.wsgi.application


# Database
# https://docs.djangoproject.com/en/1.11/ref/settings/#databases

DATABASES = {
    default: {
        ENGINE: django.db.backends.sqlite3,
        NAME: os.path.join(BASE_DIR, db.sqlite3),
    }
}


# Password validation
# https://docs.djangoproject.com/en/1.11/ref/settings/#auth-password-validators

AUTH_PASSWORD_VALIDATORS = [
    {
        NAME: django.contrib.auth.password_validation.UserAttributeSimilarityValidator,
    },
    {
        NAME: django.contrib.auth.password_validation.MinimumLengthValidator,
    },
    {
        NAME: django.contrib.auth.password_validation.CommonPasswordValidator,
    },
    {
        NAME: django.contrib.auth.password_validation.NumericPasswordValidator,
    },
]

AUTHENTICATION_BACKENDS = (
    oscar.apps.customer.auth_backends.EmailBackend,
    django.contrib.auth.backends.ModelBackend,
)

HAYSTACK_CONNECTIONS = {
    default: {
        ENGINE: haystack.backends.solr_backend.SolrEngine,
        URL: http://127.0.0.1:8983/solr,
        INCLUDE_SPELLING: True,
    },
}

DATABASES = {
    default: {
        ENGINE: django.db.backends.sqlite3,
        NAME: db.sqlite3,
        USER: ‘‘,
        PASSWORD: ‘‘,
        HOST: ‘‘,
        PORT: ‘‘,
        ATOMIC_REQUESTS: True,
    }
}

# Internationalization
# https://docs.djangoproject.com/en/1.11/topics/i18n/

LANGUAGE_CODE = en-us

TIME_ZONE = UTC

USE_I18N = True

USE_L10N = True

USE_TZ = True

# Absolute path to the directory that holds media.
# Example: "/home/media/media.lawrence.com/"
MEDIA_ROOT = location("public/media")

# URL that handles the media served from MEDIA_ROOT. Make sure to use a
# trailing slash if there is a path component (optional in other cases).
# Examples: "http://media.lawrence.com", "http://example.com/media/"
MEDIA_URL = /media/

STATIC_ROOT = location(public/static)

# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.11/howto/static-files/

STATIC_URL = /static/

 

(oscar) root@Tahr:~/frobshop/frobshop# cat urls.py 
"""frobshop URL Configuration

The `urlpatterns` list routes URLs to views. For more information please see:
    https://docs.djangoproject.com/en/1.11/topics/http/urls/
Examples:
Function views
    1. Add an import:  from my_app import views
    2. Add a URL to urlpatterns:  url(r‘^$‘, views.home, name=‘home‘)
Class-based views
    1. Add an import:  from other_app.views import Home
    2. Add a URL to urlpatterns:  url(r‘^$‘, Home.as_view(), name=‘home‘)
Including another URLconf
    1. Import the include() function: from django.conf.urls import url, include
    2. Add a URL to urlpatterns:  url(r‘^blog/‘, include(‘blog.urls‘))
"""
from django.apps import apps
# from django.conf.urls import include, url  # < Django-2.0
from django.urls import include, path  # > Django-2.0
from django.contrib import admin

urlpatterns = [
    # url(r‘^i18n/‘, include(‘django.conf.urls.i18n‘)),
    path(i18n/, include(django.conf.urls.i18n)),  # > Django-2.0

    # The Django admin is not officially supported; expect breakage.
    # Nonetheless, it‘s often useful for debugging.

    # url(r‘^admin/‘, admin.site.urls),
    path(admin/, admin.site.urls),  # > Django-2.0

    # url(r‘^‘, include(apps.get_app_config(‘oscar‘).urls[0])),
    path(‘‘, include(apps.get_app_config(oscar).urls[0])),  # > Django-2.0
]

#from django.conf.urls import url
#from django.contrib import admin

#urlpatterns = [
#    url(r‘^admin/‘, admin.site.urls),
#]

 

oscar 2.0.1安装

标签:error:   templates   exp   style   database   arc   not   tde   debug   

原文地址:https://www.cnblogs.com/longchang/p/11429703.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!