我有基于 Django 的博客应用程序。
文件结构图:
https://www.dropbox.com/s/8vnqwheucjeyy43/Selection_012.png
这里没有 manage.py 文件。
我如何在本地运行它?
谢谢。
我有基于 Django 的博客应用程序。
文件结构图:
https://www.dropbox.com/s/8vnqwheucjeyy43/Selection_012.png
这里没有 manage.py 文件。
我如何在本地运行它?
谢谢。
首先创建一个django项目:django-admin.py startproject <projectname>
然后<projectname>
将使用以下文件创建目录:
--projectname
--settings.py
--urls.py
--wsgi.py
--manage.py
现在将文件夹复制blog
到<projectname>
目录。
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
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