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

django项目运行步骤

时间:2015-04-09 23:54:24      阅读:288      评论:0      收藏:0      [点我收藏+]

标签:

1.安装requirements.txt

   sudo pip install -r requirements.txt

2.配置settings.py文件

DATABASES = {
    ‘default‘: {
        ‘ENGINE‘: ‘django.db.backends.mysql‘,
        ‘NAME‘: ‘test‘,
        ‘USER‘: ‘root‘,
        ‘PASSWORD‘: ‘root‘,
        ‘HOST‘: ‘localhost‘,
        ‘PORT‘: ‘3306‘,
    }
}

3.同步数据库

python manage.py syncdb

4.有些项目需要安装grunt

sudo  npm install -g grunt(-g代表全局)

在first-angular(包含package.json,gruntfile)中运行npm install, grunt

5.python manage.py  runserver 127.0.0.1:8000

6.nginx反向代理

server{

       listen   80;

        server_name 127.0.0.1;

        access_log /var/log/nginx/blog.hysia.com-access.log;
        error_log /var/log/nginx/log.hysia.com-com-error.log;
        root /var/wwww/zarpe-sms;
        index index.html index.htm;

        location / {

            try_files $uri/ /index.html;

        }
        location /static {
            root /var/www/zarpe-scrs-backend/;
        }

        location /api {
            proxy_pass http://127.0.0.1:8000;
        }

}




 kill 23734

$ lsof -i:80






django项目运行步骤

标签:

原文地址:http://my.oschina.net/u/2002748/blog/398302

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