Angular
This document describes Developing UI in Angular using Trillo Workbench. It is similar to developing UI for against any application server using restful API.
Introduction
This guide aims to assist new users in setting up a Demo Application on their local machines. It provides clear, step-by-step instructions to ensure a smooth setup process, even for those new to the Angular framework. By following these directions, you'll swiftly have the application running on your own system. This guide is tailored for beginners, offering a hassle-free experience to explore and test the app's functionalities firsthand.
Prerequisites
Angular: Ensure you have angular installed. You can download it from angular.io.
Node.js: Ensure you have Node.js installed. You can download it from nodejs.org.
Git: Make sure Git is installed on your system. You can download it from git-scm.com.
SSH-KEY: Make sure you've configured your SSH key for GitHub by following the setup instructions available on git-scm.com.
Clone the Repository
First, navigate to your repository on GitHub or your preferred platform.
Copy the SSH link for your repository.
Open your terminal on your local machine.
Use the following command to clone the repository:
Repository (HTTPS): git clone https://github.com/trilloapps/angular-guide
Command (SSH): git clone git@github.com:trilloapps/angular-guide.git
Setting Up the Project
Install Dependencies
Run the following command to install project dependencies using npm (Node Package Manager):
Command: npm install
Run the Application
After installing the dependencies, use the following command to run the application:
Command: ng s
This will compile your Angular app and open it in your default browser at http://localhost:.
Last updated