This is no longer used or developed. It may be interesting for historical reasons.
cd into frontend folder
If doing a first-time setup, run yarn install or npm install to install all the dependencies
Then run yarn start or npm start to start serving up the frontend app using a development server for subsequent runs
Go to http://localhost:4200
Run yarn build or npm run build to create a production-optimized build and put the generated output in frontend/dist
cd into backend folder
If doing a first-time setup, run yarn install or npm install to install all the dependencies
There are several commands to execute which include:
-
yarn buildornpm run build- Run this to compile Typescript code to Javascript and put the generated output into the
distfolder - Note: This does not start up the server, see the following commands to start the server
- Run this to compile Typescript code to Javascript and put the generated output into the
-
yarn startornpm start- Build the code and start up the backend server
-
yarn watchornpm run watch- Build the code and start the backend server in watch mode meaning everytime the
buildcommand is run, it will restart the server automatically
- Build the code and start the backend server in watch mode meaning everytime the
-
yarn debugornpm run debug- Build the code and start the backend server with the debugger attached