Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 822 Bytes

File metadata and controls

44 lines (33 loc) · 822 Bytes

Installation and Development Server

  1. Clone this repository:
    git clone <repository-url>
  2. Navigate to the project directory:
    cd <project-folder>
  3. Install the dependencies:
    npm install
  4. Start the development server:
    npm start

Navigate to http://localhost:4200/ in your browser to see the application. The application will automatically reload if you change any of the source files.


Note: Ensure you have an updated version of Node.js installed on your machine. You can verify your Node.js version with:

node -v

If you are using nvm as your Node.js version manager, you can switch to the right version with:

nvm use

Build

To build the application, run:

npm run build