LoginSignup
0
0

More than 5 years have passed since last update.

Django【自分用】

Last updated at Posted at 2017-03-07

cloud9環境構築

ローカルサーバ起動

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のディレクトリを一つ上にあげる

フィールド追加

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