如何安装基于Django的项目?

时间:2013-10-01 04:35:39

标签: python django

我有基于Django的博客应用程序。

文件结构图片:

https://www.dropbox.com/s/8vnqwheucjeyy43/Selection_012.png

这里没有manage.py文件。

我如何在本地运行?

感谢。

1 个答案:

答案 0 :(得分:4)

首先创建一个django项目:django-admin.py startproject <projectname>

然后将使用这些文件创建<projectname>目录:

--projectname
  --settings.py
  --urls.py
  --wsgi.py

--manage.py

现在将文件夹blog复制到<projectname>目录。

编辑settings.py:

添加数据库详细信息。

import os
path=os.path.dirname(__file__)
............... other settings.py variables

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
        'NAME': path+'/tt.db',                      # Or path to database file if using sqlite3.
        'USER': '',                      # Not used with sqlite3.
        'PASSWORD': '',                  # Not used with sqlite3.
        'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3.
        'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
    }
}

blog添加到settings.py INSTALLED_APPS

INSTALLED_APPS = (
    ....other apps
    'blog',
)

编辑STATICFILES_DIRS

STATICFILES_DIRS = (
    os.path.join(path, '..','blog','static') 
)

编辑urls.py

将所需的博客网址添加到urls.py

urlpatterns = patterns('',
    ...other urlpatterns
    url(r'^blog/', include('blog.urls')),
)

运行网站

python manage.py collectstatic
python manage.py syncdb
python manage.py runserver

您现在可以访问:127.0.0.1:8000