Giter Club home page Giter Club logo

lumeer-web-ui's Introduction

Lumeer Web UI

This repository contains Lumeer front-end source code.

Prerequisites

The following tools are needed to work with this repository:

Read how to install and set up both these tools here.

Dependencies

Before running the application on your machine for the first time, install project dependencies:

$ npm install

Development

You can run the application locally using the following NPM scripts:

  1. npm run start: uses JIT compiler and default language (English at the moment)
  2. npm run start:aot: uses AOT compiler and default language (English at the moment)
  3. npm run start:cs: uses AOT compiler and Czech language
  4. npm run start:en: uses AOT compiler and English language

The application will be run on http://localhost:7000/ui by default. The third script runs the application on http://localhost:7000/cs and the fourth one runs it on http://localhost:7000/en.

You also need to run our back-end if you want to be able to work with the application.

Memory limits

If the build process takes too long or fails because it runs out of memory, set NODE_OPTIONS environment property with the maximum amount of memory your machine can provide for this process (7000 MB is used in the following example):

NODE_OPTIONS=--max_old_space_size=7000 npm run start

It is recommended to save the commands above together with this environment property as run tasks in your IDE so you do not have to type long commands every time you start the application.

Deployment

Here is the example command to build the application WAR file with all configuration properties you might need:

$ AUTH_CLIENT_ID=<auth0 client id> \
> AUTH_DOMAIN=<auth0 app domain> \
> BLOCKLY_CDN=<javascript library url> \
> BUILD_NUMBER=42 \
> I18N_LOCALE=en \
> LOGZIO_KEY=<access token> \
> LUMEER_ENGINE=lumeer-engine \
> LUMEER_ENV=production \
> MAPBOX_KEY=<access token> \
> MAPQUEST_KEY=<consumer key> \
> MAPTILER_KEY=<key> \
> MAX_FILE_UPLOAD_SIZE=10 \
> PUSHER_CLUSTER=us1 \
> PUSHER_KEY=<pusher api key> \
> PRESIGNED_URL_TIMEOUT=60 \
> SENTRY_DSN=https://<key>@sentry.io/<project> \
> SENTRY_AUTH_TOKEN=<secret token> \
> SESSION_TIMEOUT=30 \
> SMARTLOOK_KEY=<api key> \
> VIDEO_KEY=<youtube api key> \
> mvn clean package -Dcontext.root=en
  • AUTH_CLIENT_ID: client ID of Auth0 application
  • AUTH_DOMAIN: base URL for Auth0 authentication
  • BLOCKLY_CDN: Blockly JavaScript library URL (optional)
  • BUILD_NUMBER: build number to be shown in the application
  • I18N_LOCALE: language to be used in the application (en, cs or empty to use default en)
  • LOGZIO_KEY: Logz.io access token
  • LUMEER_ENGINE: back-end deployment context root
  • LUMEER_ENV: environment in which the application runs (staging, production or empty)
  • MAPBOX_KEY: Mapbox access token
  • MAPQUEST_KEY: MapQuest consumer key
  • MAPTILER_KEY: MapTiler key
  • MAX_FILE_UPLOAD_SIZE: maximum allowed size of file attachment in megabytes (10 MB by default)
  • PRESIGNED_URL_TIMEOUT: time period in seconds during which a presigned file URL is valid (60s by default)
  • PUSHER_CLUSTER: Pusher.com for push notifications - the server cluster to be used
  • PUSHER_KEY: Pusher.com for push notifications - the secret API key
  • SENTRY_DSN: Sentry Data Source Name, if set it activates Sentry (recommended for production only)
  • SENTRY_AUTH_TOKEN: Sentry authentication token
  • SESSION_TIMEOUT: user inactivity time before session expiration (in minutes)
  • SMARTLOOK_KEY: Smartlook API key
  • VIDEO_KEY: YouTube Google v3 API key
  • context.root: front-end deployment context root (/ui/ by default)

If you are adding a new environment variable, make sure it is used in both env-vars.js and src/environments/environment-variables.ts files. Otherwise, it will not get propagated to the application.

Translations

When you add some text to the application which will be shown to the user, you should always add i18n attribute on its element with the translation string unique ID as its value. For example:

<span i18n="@@button.cancel">Cancel</span>

See the details in the Angular documentation.

After you add new texts, you need to run the following command:

$ npm run i18n

It will add your new texts into all translation files (src/i18n/messages.en.xlf and src/i18n/messages.cs.xlf). You then need to open these files and translate the texts by adding the translations between the <target>...</target> tags.

How To Contribute

Everyone is welcome to contribute to this project. However, before you start making any changes, read the Contributing Guide first.

TSLint is run with every pull-request so make sure your code complies with our linting rules by running the following script:

$ npm run lint

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.