20日のDjango勉強会 Disc2まで日が無いのでDjangoのチュートリアルをはじめました。

$ sudo apt-get install python python-django

Python2.4.4とDjango0.95が入った。

$ django-admin startproject mysite

railsコマンドみたいなものかな。

$ python manage.py runserver
Validating models...
0 errors found.

Django version 0.95, using settings 'mysite.settings'
Development server is running at http://127.0.0.1:8000/
Quit the server with CONTROL-C.

おお、うまく行ってそう。

http://192.168.1.40:8000/ (coLinuxのIP)にアクセス。・・・出ない!

coLinux上から

$ GET http://127.0.0.1:8000/

だと出るのに!(別にDjangoのせいじゃない)

ああどうすりゃいいんだろ、とりあえず眠いので今日はここまでっ!!

追記:

yonekawaさんの助言で、、、

$ python manage.py runserver 192.168.1.40:8000
Validating models...
0 errors found.

Django version 0.95, using settings 'mysite.settings'
Development server is running at http://192.168.1.40:8000/
Quit the server with CONTROL-C.

django worked!

おおお、動いた! あざーす!

Comments


Option