Unverified Commit d72ce631 authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #1154 from ethereum/addbinary

Add binary
parents 06b70683 fe8c8078
#!/usr/bin/env node
var httpServer = require('http-server')
var server = httpServer.createServer({
root: __dirname + '/../'
});
console.log('\x1b[33m%s\x1b[0m', 'Starting Remix IDE at http://localhost:8080')
server.listen(8080, '127.0.0.1', function () {});
{
"private": true,
"name": "remix-ide",
"version": "0.0.0",
"version": "0.5.0",
"description": "Minimalistic browser-based Solidity IDE",
"devDependencies": {
"async": "^2.1.2",
......@@ -137,6 +136,7 @@
]
]
},
"bin" : { "remix-ide" : "./bin/remix-ide" },
"scripts": {
"setupremix": "npm run pullremix && npm run linkremixcore && npm run linkremixlib && npm run linkremixsolidity && npm run linkremixdebugger;",
"pullremix": "git clone https://github.com/ethereum/remix",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment