zoukankan      html  css  js  c++  java
  • PracticalDjangoProjects 笔记一

    1. A Django project is a wrapper of sorts, which contains settings for one or more Django-powered applications and a list of which applications it uses.

    2.  ADMONITION: PERMISSION ERRORS
    If you’re using Linuxor Mac OS X,you may see an error message saying “permission denied.”If this happens,you need to tell your operating system that the django-admin.py script is safe to run as a program.You can do this by navigating to the directory that django-admin.py is in and typing the command chmod +x django-admin.py.

    3. ADMONITION: CHANGING THE ADDRESS AND PORT
    If something else is already using port 8000 on your computer,if you’re not allowed to run programs that bind to that port,or if you want to view pages served by Django’s development server from another computer,you’ll need to manually specify the address and port to use when you launch the development server.The syntax for this is python manage.py runserver ip_address:port_number.So,for example,to listen on all of your computer’s available IP addresses (so that other computers can view pages from the development server) and bind to port 9000 instead of 8000,you could type python manage.py runserver 0.0.0.0:9000.

    作者:Shane
    出处:http://bluescorpio.cnblogs.com
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
  • 相关阅读:
    apache的并发
    PHP 文件上传
    打包备份3天
    dz改写CSS
    linux cifs自动挂载远程windows硬盘或文件夹
    C++面向对象
    "i++"和"++i"
    《程序员面试宝典》一个程序
    《程序员面试宝典》强制转换,内存地址
    《程序员面试宝典》编程技巧--位运算
  • 原文地址:https://www.cnblogs.com/bluescorpio/p/1624185.html
Copyright © 2011-2022 走看看