Cloning rarible part 1

port 8000 (http://[::]:8000/) …

what i get in my browser is :- This site can’t be reached

The webpage at http://[::]:8000/ might be temporarily down or it may have moved permanently to a new web address.

ERR_ADDRESS_INVALID any subjection ???

this my main.js
Moralis.initialize(“YykBOopEziNqEcaJuyISHV3LbXYBfO1O9CMi6dDm”);

Moralis.serverURL = ‘https://uz9jpvslyldb.moralishost.com:2053/server

init = async () => {

window.web3 = await Moralis.Web3.enable();

initUser();

}

initUser = async () => {

if (await Moralis.User.current()){

    hideElement(userConnectButton);

    showElement(userProfileButton);

}else{

    showElement(userConnectButton);

    hideElement(userProfileButton);

}

}

login = async () => {

try {

    await Moralis.Web3.authenticate();

    initUser();

} catch (error) {

    alert(error)

}

}

hideElement = (element) => element.style.display = “none”;

showElement = (element) => element.style.display = “block”;

const userConnectButton = document.getElementById(“btnConnect”);

userConnectButton.onclick = login;

const userProfileButton = document.getElementById(“btnUserInfo”);

init();

this is my index.html

<meta charset="UTF-8">

<meta http-equiv="X-UA-Compatible" content="IE=edge">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>inimitable</title>
<div>

    <button id="btnConnect">Connect wallet</button>

    <button id="btnUserInfo">profile</button>

</div>

<script src="https://cdn.jsdelivr.net/npm/web3@latest/dist/web3.min.js"></script>

<script src="https://unpkg.com/moralis/dist/moralis.js"></script>

<script src="main.js"></script>

Try to access http://127.0.0.1:8000/ after you started your local http server.

m http.server
Serving HTTP on :: port 8000 (http://[::]:8000/) …
::ffff:127.0.0.1 - - [06/Oct/2021 16:13:37] “GET / HTTP/1.1” 200 -
::ffff:127.0.0.1 - - [06/Oct/2021 16:13:37] code 404, message File not found
::ffff:127.0.0.1 - - [06/Oct/2021 16:13:37] “GET /favicon.ico HTTP/1.1” 404 -
::ffff:127.0.0.1 - - [06/Oct/2021 16:13:45] “GET / HTTP/1.1” 304 -
::ffff:127.0.0.1 - - [06/Oct/2021 16:13:46] “GET / HTTP/1.1” 304 -

this what i’m still getting

You have to start that server from the folder where you have index.html and main.js

thank you mate , it helps