{"id":13392649,"url":"https://github.com/dominicwilliams/instant-dapp-ide","last_synced_at":"2025-03-13T18:31:53.567Z","repository":{"id":66161342,"uuid":"49766726","full_name":"dominicwilliams/instant-dapp-ide","owner":"dominicwilliams","description":"Complete Dapp and Solidity development environment as docker image you can run from command line","archived":false,"fork":false,"pushed_at":"2017-09-01T09:51:01.000Z","size":59,"stargazers_count":64,"open_issues_count":7,"forks_count":14,"subscribers_count":11,"default_branch":"master","last_synced_at":"2024-10-26T17:09:27.663Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dominicwilliams.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-01-16T09:04:33.000Z","updated_at":"2023-03-11T08:11:20.000Z","dependencies_parsed_at":"2023-02-28T12:00:56.321Z","dependency_job_id":null,"html_url":"https://github.com/dominicwilliams/instant-dapp-ide","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dominicwilliams%2Finstant-dapp-ide","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dominicwilliams%2Finstant-dapp-ide/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dominicwilliams%2Finstant-dapp-ide/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dominicwilliams%2Finstant-dapp-ide/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dominicwilliams","download_url":"https://codeload.github.com/dominicwilliams/instant-dapp-ide/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243459121,"owners_count":20294342,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-07-30T17:00:32.028Z","updated_at":"2025-03-13T18:31:53.556Z","avatar_url":"https://github.com/dominicwilliams.png","language":"Shell","funding_links":[],"categories":["Tools","Libraries","Utilities","Shell"],"sub_categories":["Audits"],"readme":"# Instant Dapp IDE\nGet up and running with a full professional Dapp development environment in minutes...\n* If you have Docker installed, simply clone the repo, then\n```\n./run-image.sh\n```\n\n* Environment incorporates best-of-breed Truffle Framework (see http://truffleframework.com/docs/)\n\n* Browser-based Cloud9 IDE with Solidity support on http://localhost:8181\n\n* Build, test, deploy and serve your Dapp from the command line\n\n* Pair program with Cloud9, or SSH/tmux\n\n* Your ~/src folder mapped inside image \n  \nTIPS \n\n1. If you have an old Docker version on OS X, setup port forwarding\n```\n$ ./setup-port-fowarding-for-old-docker.sh  \n```\n  \n2. You can pull the latest version of the image from DockerHub\n```\n$ ./pull-latest-image.sh  \n```\n\n** \n```\n ___           _              _     ____                      ___ ____  _____ \n|_ _|_ __  ___| |_ __ _ _ __ | |_  |  _ \\  __ _ _ __  _ __   |_ _|  _ \\| ____|\n | || '_ \\/ __| __/ _` | '_ \\| __| | | | |/ _` | '_ \\| '_ \\   | || | | |  _|  \n | || | | \\__ \\ || (_| | | | | |_  | |_| | (_| | |_) | |_) |  | || |_| | |___ \n|___|_| |_|___/\\__\\__,_|_| |_|\\__| |____/ \\__,_| .__/| .__/  |___|____/|_____|\n                                               |_|   |_|                      \n\n Build 2016-12-08.1\n \n *** GET STARTED ***\n tmux is used to maintain concurrent windows. In window 0 we are running\n testrpc, which is a dummy blockchain for testing and development. In window 1\n we are running c9.sh, which makes the Cloud9 IDE available in a Web browser on\n http://localhost:8181. You are in window 2, which is a great place to build\n a Dapp. Note you can create new windows using ctrl-b c, and you can\n navigate to an existing window using ctrl-b \u003cwindow\u003e.\n \n SAMPLE BUILD PROCESS...\n $ mkdir new-proj         # create a new project folder\n $ cd new-proj            # make project folder current directory\n $ truffle init           # initialize a bare bones project!!!\n $ truffle compile        # compile project contracts\n $ truffle test           # run project's unit tests\n $ truffle build          # build the whole Dapp (inc. html, js...)\n $ truffle migrate        # migrate compiled contracts to e.g. testrpc chain\n $ truffle serve          # serve Dapp for testing on http://localhost:8080\n \n TIPS\n -- Share your Cloud9 url with collaborators on your external IP address\n ---- Cloud9 supports real time shared editing of code\n -- If you prefer using the terminal we have installed VIM\n ---- Ready pimped with NerdTree and Solidity support\n -- An SSH server makes it possible to share tmux session\n ---- Pair programmers join tmux sessions using $ tmux a -t pair\n \n DOCS\n -- http://truffleframework.com/ [Truffle]\n -- https://media.readthedocs.org/pdf/solidity/latest/solidity.pdf [Solidity]\n -- https://gist.github.com/MohamedAlaa/2961058 [tmux]\n \n Enjoy! Ping me with feature requests via https://twitter.com/dominic_w\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdominicwilliams%2Finstant-dapp-ide","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdominicwilliams%2Finstant-dapp-ide","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdominicwilliams%2Finstant-dapp-ide/lists"}