- Create a new file in the root of this project named
config.json
- Copy the content of the file
config.example.json
into the previously created file - Fill the variables:
DEBUGGER
: Turn on the remote debuggerWAKANDA_BIN
: Full path ofwakanda server
binaryLICENSE_PATH
: Full path of the license fileSOLUTIONS
: List of solutions to run. Each solution have a processname
and asolution
attribute that contains the full path of the.waSolution
file.
- Install dependencies
npm i
- Start processes
npm start
NB
: Verify that all projects have different port to run them properly.
npm start
: Start all solutionsnpm run restart -- [name]
: restart a specific solution (name
is the name that you have specified inconfig.json
file)npm run restart:all
: restart all solutionsnpm run stop -- [name]
: stop a specific solution (name
is the name that you have specified inconfig.json
file)npm run stop:all
: stop all solutionsnpm run list
: List the status of all solutionsnpm run logs
: Display standard outputnpm run show -- [name]
: Show details of a specific solution (name
is the name that you have specified inconfig.json
file)