-
Notifications
You must be signed in to change notification settings - Fork 12
Getting Started
BhakareAbhishek edited this page Jul 15, 2024
·
15 revisions
Setup Your Development Environment
The following tools should be installed on your development machine:
-
An IDE (e.g. Visual Studio) that supports .NET 8.0+ development.
-
Yarn v1.20+ (not v2)^1 or npm v6+ (already installed with Node)
-
ABP CLI (command line interface that is used to automate some common tasks for ABP based solutions)
Note: Please check if you have access to Raaghu Portal with your Admin before proceeding ahead.
Raaghu CLI is a command line interface that is used to automate some common tasks for Raaghu based solutions.
dotnet tool install -g Waiin.Raaghu.Cli
dotnet tool install --global Waiin.Raaghu.Cli
dotnet tool update -g Waiin.Raaghu.Cli
dotnet tool update --global Waiin.Raaghu.Cli
raaghu create --React
- Install Node Module: Use npm run install-all to install the required Node.js modules for your project.
npm run install-all
- Run the Storybook: Execute npm run storybook to start the Storybook development server.
npm run storybook
- Build Storybook: Generate a production build of Storybook using npm run build-storybook.
npm run build-storybook
- Check the npm package: Build your project using npm run build, which typically compiles your code and assets for deployment.
npm run build-storybook
- Using a tool named "raaghu" to create
raaghu create --React
- Running an npm command to install dependencies
npm run install -all
- Running the pages using following command:
npm run pages
