Nuxt 3 based web application for iamone platform
You need to install Node.js 18 in your system.
Firstly clone repository into local system
git clone https://github.com/rajatxs/iamone-app-v2.git iamone-app
Change the current directory
cd iamone-app
Install required dependencies
npm install
or
yarn install
Add a .env new file in the root of the project, and add the following variables to it
# iamone API URL (https://github.com/rajatxs/iamone-core)
VITE_APP_API_URL="<API URL>"
# Current APP URL
VITE_APP_URL="<APP URL>"
Start development server using following command
npm run dev
or
yarn dev