Skip to content

Deploy on localhost

Alexey Anshakov edited this page Dec 13, 2019 · 33 revisions

To get the project frontend up and running on localhost, do :

git clone --recursive https://github.com/webRunes/WRIO-local-dev.git
cd WRIO-local-dev

You have to delete all catalogs and fork them again, git clone in WRIO-local-dev. Read https://github.com/webRunes/WRIO-local-dev/blob/master/readme.md for details.

Then you have to run in all catalogs next code:

npm install -g gulp
npm install -g webpack webpack-dev-server

Then from WRIO-local-dev run:

cd WRIO-InternetOS
npm install 
npm run devserver

Next time you can start development just by starting npm run devserver

The command starts the webpack development server where static files are hosted, and that dynamically compiles modified applications. Webpack speeds up the development process through recompiling changed project files only, and automatic reload of the page after the recompilation.

http://localhost:3033/

Note: in case of issues with sha3 you might need to install

npm install --global windows-build-tools

To run complete project backend+frontend on your computer inside a Docker container:

Local development using docker