-
Notifications
You must be signed in to change notification settings - Fork 5
Home
Arun Kumar edited this page Mar 13, 2018
·
11 revisions
- Download the project source code from https://github.com/arunkumar413/Online-EDA.git
- Unzip/extract the the contents of the downloaded zip file.
- cd to the project directory containing the files: home.html,parts.js.editor.js etc,.
- If you're using python 3.x version on your machine execute this code:
python -m http.server
- If Python version is 2.X run:
python -m SimpleHTTPServer
- Visit http://localhost:8000/home.html to access the application.
- By default, this will run the contents of the directory on a local web server, on port 8000.
- For more info on running a simple http server visit https://developer.mozilla.org/en-US/docs/Learn/Common_questions/set_up_a_local_testing_server
Note: If you already have something running on port 8000, you can choose another port by running the server command followed by an alternative port number, e.g. python -m http.server 7800
(Python 3.x) or python -m SimpleHTTPServer 7800
(Python 2.x).
You can then access your content at localhost:7800.