1. Start a command prompt window or terminal and change directory to [unpacked path]/zeus/.

cd [unpacked path]/zeuz/

  1. Install the React local project dependencies by executing npm install or yarn install command.

This command will install the dependencies to node_modules folder these dependencies are listed in package.json.

npm install

# OR

yarn install

  1. Execute npm run dev or yarn dev command to launch the server which watches your files, and rebuilds the app as you make changes to those files. Open your browser on http://localhost:5173/.

npm run dev

# OR

yarn dev

Our React application is based on Vite React-Ts template. For more detailed information on Vite, visit the official Vite documentation website.

Warning: Use LTS version of NodeJS.