remix-ide environment construction

install remix-ide

docker run -d -p 8881:80 remixproject/remix-ide:OktoOK

The reason why the version is not used here latestis that the latest version disables the Deploy & run transactions plugin. But it seems to have been added recently

If you feel old, use the following command to check the version you need

curl  https://registry.hub.docker.com/v1/repositories/remixproject/remix-ide/tags | python3 -m json.tool | more

install remixd

This can also be installed without installation, this is for the browser to access your local files.

# 把输出的目录加到环境变量里
yarn global bin

sudo yarn global add @remix-project/remixd
# 共享当前目录到 http://localhost:8881
remixd -s ./ -u http://localhost:8881

Start the remixd plugin

insert image description hereAfter clicking Connect, you can access the shared folder.

official tutorial

Guess you like

Origin blog.csdn.net/qq_45256489/article/details/122884274