AMRIT
  • Introduction
  • Architecture
    • System architecture overview
    • API Guide
    • Integrations
  • Developer Guide
    • Codebase structure
    • Development environment setup
      • System Requirements
      • Software dependencies
      • Installation Instructions
        • For UI repositories
        • For API repositories
      • Common Issues and Troubleshooting
  • Deployment
    • Installation guide
    • CI/CD pipelines
    • Observability
    • Wildfly
      • SSL Configuration for WildFly
  • Data Management
    • Database schema
    • Data privacy and security
    • Data export
    • Reporting
      • Integrating DHIS2 with AMRIT
      • Example Python Scripts
  • Community and Support
    • Contributing to AMRIT
    • How to get help
    • Code of conduct
    • Contribution guidelines
Powered by GitBook
On this page
  1. Developer Guide
  2. Development environment setup
  3. Installation Instructions

For UI repositories

PreviousInstallation InstructionsNextFor API repositories

Last updated 3 months ago

Steps to Clone and Set Up the UI Repository

  1. Clone the Repository:

    • Clone the UI repo from the GitHub fork branch to your local system using the command:

      git clone <repository-url>
  2. Open the Project:

    • Open the project in Visual Studio Code/your preferred IDE.

  3. Install Node Modules:

    • Navigate to your project folder and install the necessary Node.js modules using:

      npm install
  4. Copy Environment Configuration:

    • Copy the environment configuration file:

      cp src/environments/environment.local.ts src/environments/environment.ts
    • Edit the endpoints, ports, and IPs in environment.ts as per your local running services.

  5. Run the Project:

    • Once the Node modules are installed successfully, run the project using:

      npm start

Access your application through your browser using http://localhost:{PORT}, where PORT is defined in the .

AMRIT documentation