Please follow below steps to install and setup all prerequisites:
Make sure to have the .NET installed & running in your computer. If you already have installed it then can skip this step.
Make sure to have the Visual Studio 2022 installed & running in your computer. If you already have installed it then you can skip this step.
To setup Inspinia, follow the below-mentioned steps:
If you are using Visual Studio 2022:
You can run the following commands to run projects locally or build for production use:
| Command | Description |
|---|---|
dotnet watch |
This command will build and start the app in "watch" mode. The app will automatically rebuild and refresh whenever you make code changes. It’s useful for active development. |
dotnet run |
This command will build and start the app. It doesn’t track code changes, so you'll need to stop and rerun the command manually after changes. |
dotnet build |
This command will build the app. |
In order to use build tools you will need to download and install Node.js. If you do not have Node.js installed already, you can get it by downloading the package installer from the official website.
Make sure to have the Gulp installed & running in your computer. If you already have installed gulp on your computer, you can skip this step.
npm install -g gulp
To compile assets, follow the below-mentioned steps:
If you don't have yarn installed on your PC,
use the command npm i -g yarn or
sudo npm i -g yarn
| Command | Description |
|---|---|
yarn |
This would install all required dependencies in
node_modules folder.
|
gulp or yarn dev |
This would compile the resources in wwwroot
folder.
|
gulp build or yarn build |
This would bundle the resources for production. |
gulp rtl or yarn rtl |
This would compile plugin, scss and generates rtl css. |
gulp rtlBuild or yarn rtl-build |
It compiles the source assets including scss and bundles into production ready use RTL |
| Command | Description |
|---|---|
npm i |
This would install all required dependencies in
node_modules folder.
|
gulp or npm run dev |
This would compile the resources in wwwroot
folder.
|
gulp build or npm run build |
This would bundle the resources for production. |
gulp rtl or npm run rtl |
This would compile plugin, scss and generates rtl css. |
gulp rtlBuild or npm run rtl-build |
It compiles the source assets including scss and bundles into production ready use RTL |