Node.js + NPM
How to run:
-
Run
npm instal
It will install all the dependencies in node_modules folder. -
Create the environment.ts in ./src/environments folder. Fill it with the following:
export const environment = {
production: true,
isAdmin: false,
baseUrl: '',
buildNumber: '',
showResults: true,
recaptchaClientToken: ''
};
baseUrl - url of running WebApp, when running locally it will likely be
http://localhost:5501
recaptchaClientToken - PUBLIC token got when creating reCAPCTCHA v2
- After running the site, you can execute
npm start
. After this you can see the site in your browser on localhost:4200.