エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
How use Django with Tornado web server?
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
How use Django with Tornado web server?
it's very simple ( especially with django 1.4) . 1 - just build your django project( and apps ) a... it's very simple ( especially with django 1.4) . 1 - just build your django project( and apps ) and make sure it works fine. 2- create a new python file at the root folder ( same dir where you used django-admin.py startproject) 3- then copy the code below , edit the os.environ['DJANGO_SETTINGS_MODULE'] line, and paste it in that new .py file. import os import tornado.httpserver import tornado.iolo