現象
python manage.py startapp test
上記のようにプロジェクトを作成してroute設定をして「localhost:8000 /api」を叩いたが、以下のようなエラーが出力される。
Page not found (404)
Using the URLconf defined in django_react.urls, Django tried these URL patterns, in this order:
routeの設定をしているのに404なのは何事と思いつつ色々調べた。
解決法
python3 manage.py createsuperuser
上記コマンドにてスーパユーザを作成する必要があるみたい。
コマンドラインに入力するが、パスワードは入力文字が見えないので若干注意が必要かもです。
以上終わり
コメント