I’m using the codespace of Github. I do all the steps right in the link below.
every time i run my server , i get this error ( 404 ).
Page not found (404)
Request Method: | GET |
---|---|
Request URL: | http://localhost/ |
Using the URLconf defined in moralis_auth.urls
, Django tried these URL patterns, in this order:
- admin/
- web3_auth/
- auth/
The empty path didn’t match any of these.
You’re seeing this error because you have DEBUG = True
in your Django settings file. Change that to False
, and Django will display a standard 404 page.
how could i solve this problem?