0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Django【自分用】

Last updated at Posted at 2017-03-07

###cloud9環境構築
http://qiita.com/rmiyamoto/items/4143c6081fb664208e06

###ローカルサーバ起動

python manage.py runserver $IP:$PORT

###モデルのデータベース作成

python manage.py makemigrations polls

###プロジェクト作成

django-admin startproject hello

###エラー

ImportError: No module named 'hello.urls'

【setting.py】

import sys
sys.path.append('/path/to/hello')
import hello

参考
http://yuzatakujp1013.hatenablog.com/entry/2016/01/28/162051

###データベース作成

python manage.py makemigrations
python manage.py migrate

###コンソール表示

python manage.py shell

###Djangoバージョン確認

>>> import django
>>> django.get_version()
'1.6.1'

###アプリの作成

python manage.py startapp polls

###base.htmlが読み込まれない時

base.htmlのディレクトリを一つ上にあげる

###フィールド追加
http://blog.yuku-t.com/entry/20100508/1273259928

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?