I’ve downloaded dapp tp Atom- using python 3 to http.server I’m getting no response in localhost:8000-the output on powershell is:
PS C:\Users\keith\Documents\ethereum-course-advanced2\dapp> python -m http.server
Serving HTTP on :: port 8000 (http://[::]:8000/) …
::1 - - [11/Sep/2020 10:21:39] “GET / HTTP/1.1” 200 -
::1 - - [11/Sep/2020 10:30:27] “GET / HTTP/1.1” 200 -
then:
C:\Users\keith\Documents\ethereum-course-advanced2\dapp> python -m http.server
Serving HTTP on :: port 8000 (http://[::]:8000/) …
::1 - - [11/Sep/2020 11:12:56] “GET / HTTP/1.1” 200 -
::1 - - [11/Sep/2020 11:12:58] code 404, message File not found
::1 - - [11/Sep/2020 11:12:58] “GET /favicon.ico HTTP/1.1” 404 -
Any help appreciated>
Keith