Skip to content

Latest commit

 

History

History
66 lines (46 loc) · 1.39 KB

File metadata and controls

66 lines (46 loc) · 1.39 KB

TALightDesktop

Try the LIVE DEMO

This app in intended to be used as Graphic client for TALight
https://github.com/romeorizzi/TALight

Install

TODO: Download a binary release

Setup Development Environment

The project by default is intended to be used with Visual Studio Code.
The app is a client and in order to be used it requires to connect to instance of TALight server (tald).

Dependencies:

  • NodeJS
  • Yarn
  • TypeScript
  • Angular
  • Tauri
  • TALight

Instructions:

Running the app

From the main folder of the app ( same location as package.json )

Install node dependencies (run once):

npm install

To run the actuall app during development ( it autoreload when files are changed )
Then navigate to http://localhost:4200/

npm start 

internally it does "ng serve --open"

To create new components (ex: views )

ng generate component component-name

To build a "production" version, the build artifacts will be stored in the dist/ directory.

ng build

Building for UniVR endpoint

Using the command:

yarn run build:univr

Dist folder will be customized for UniVR endpoint.

This project was generated with Angular CLI version 13.3.5.