我正在使用Django创建一个SaaS项目。 我决定将django-saas-kit用于用户订阅和多帐户部分。
理想情况下,我希望能够为每个用户和一个单独的数据库创建一个新站点。 站点框架是否支持此功能?如何实施?
感谢。
答案 0 :(得分:4)
您应该创建一个“clients”文件夹,以及每个客户端的子目录。在每个子目录中,创建一个site_settings.py文件:
import os.path
# import global settings
from settings import *
# this is barely just the name of the client dir, you might want to use that
SITE_NAME = __file__.split('/')[-2]
# this is the directory of the client website
CLIENT_ROOT = os.path.abspath(os.path.dirname(__file__))
DATABASES = {
'default': {
'ENGINE': 'django.contrib.gis.db.backends.postgis',
'NAME': SITE_NAME,
'USER': SITE_NAME,
'PASSWORD': 'some random password',
}
}
# you might want this too so that each client have his own MEDIA_ROOT
MEDIA_ROOT = os.path.join(CLIENT_ROOT, 'upload')
然后不要忘记使用--settings开关来管理命令。例如:
./manage.py syncdb --settings=clients.demo.site_settings
不要忘记每个客户都需要拥有自己的额外东西。例如,如果你将haystack与whoosh一起使用,你需要添加它,以免它在客户端之间混淆:
HAYSTACK_WHOOSH_PATH = os.path.join(CLIENT_ROOT, 'whoosh')
或者使用django-zstask:
ZTASKD_URL = 'ipc:///tmp/%s_ztask.sock' % SITE_NAME
或者JohnnyCache:
JOHNNY_MIDDLEWARE_KEY_PREFIX=SITE_NAME