Skip to content

RTUITLab/Olympiad-Front

Repository files navigation

OlympiadApp

Build Status

Requirement

Node.js + NPM

How to run:

  1. Run npm instal It will install all the dependencies in node_modules folder.

  2. 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

  1. After running the site, you can execute npm start. After this you can see the site in your browser on localhost:4200.