Financial_Analysis_FE

This project is a frontend application for financial analysis, created using the Next.js framework. It provides a user interface for analyzing financial data and visualizing the results.

Stars
4

Financial Analysis -- Frontend

Description

How to build & run? 🎯

Make sure you have Nodejs installed anc clone this repository on local PC.

node --version
git clone <this-repo-name>
  • Install the dependencies:

    npm install
    
    • Installs all the dependencies required by the project.
  • Run dev server

     npm run dev
    
  • Build

     npm run build
    
  • Run Server

     cd dist
     npx serve -s -l 80
    
  • To contribute, make pull request for your own branch:

    git add .
    git commit -m "<COMMIT-MESSAGE>"
    git push origin <NAME-OF-THE-BRANCH>