Setup Development Environment

Setup your development environment for building v5 apps.


Prerequisites

  • Node.js 20+ installed

  • Code editor (VS Code recommended)

  • Git installed

  • Access to iviva repositories


1. Setup iviva Framework

Clone and build the framework:

# Clone framework
git clone http://source.iviva.com/dinesh/iviva-net-core
cd iviva-net-core
git checkout v5-design-changes

# Build framework
cd iviva-net-core
dotnet publish -o ../build

# Run ivivaweb
cd ../build
dotnet ivivaweb.dll

Note: Use this local build instead of release builds for v5 development.


2. Setup Apps Repository

Clone the apps repository:


3. Enable V5 Apps

Enable System and Location v5 apps:


4. Verify Framework Setup

Access v5 screen:

If you see the Location v5 app, framework setup is complete.


Next Steps

Your development environment is ready. Continue to:

Last updated