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でwebサービスを作る1

Last updated at Posted at 2019-10-06

使うコマンドを覚えるのが面倒なのでコピペ用にまとめました。

まずプロジェクトを作る

django-admin startproject project2

『project2』というプロジェクトを作りました。

次にアプリケーションを作る

まずディレクトリ移動

cd project2

アプリケーション作成

python manage.py startapp hello

これで『hello』というアプリケーションを作成。

ある程度ファイルを編集したらブラウザで確認

開発用サーバ起動

python manage.py runserver

ブラウザで下記にアクセスし実行状態を確認する

http://localhost:8000/hello<アプリケーション名>
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?