下記のコマンドで、「example」という名前のDjangoプロジェクトを作成します。
django-admin startproject example
フォルダ構成は下記のようになっています。
example │ manage.py │ └─example settings.py urls.py wsgi.py __init__.py
DjangoでWebサーバを立ちあげ方は、
exampleディレクトリに移動して下記のコマンドを実行するだけです。
python manage.py runserver
サーバを起動するコマンドを実行すると、
下記のような結果がでて、http://127.0.0.1:8000/にアクセスするとデフォルトのWebページが開けます。
Performing system checks... System check identified no issues (0 silenced). You have 15 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth, contenttypes, sessions. Run 'python manage.py migrate' to apply them. December 26, 2018 - 20:33:14 Django version 2.1.4, using settings 'example.settings' Starting development server at http://127.0.0.1:8000/ Quit the server with CTRL-BREAK.
http://127.0.0.1:8000/