Skip to content

Latest commit

 

History

History
76 lines (53 loc) · 2.41 KB

README.md

File metadata and controls

76 lines (53 loc) · 2.41 KB

mint-ui-lit Build Status

New version of the MINT-UI

Version

Active

Url Name GitHub Firebase
https://dev.mint.isi.edu Development The last commit on dev branch MINT-FULL
https://formative.mint.isi.edu Formative The last commit on MINT-Formative branch MINT
https://mint.isi.edu Full The last release on master branch MINT-FULL
https://demo.mint.isi.edu Demo The last commit on MINT-demo branch MINT-DEMO

Snapshots

Deploy

The deployment of the following the services is full-automatic:

The deployment of the production webpage needs a manual step.

Wait! How I can deploy a new version?

[mintui@mint ~]$ ssh mint.isi.edu -l mintui
[mintui@mint ~]$ ls -l
lrwxrwxrwx 1 mintui mintui 11 Aug 20 08:20 mintui_production -> mintui_v0.0.1
drwxrwxr-x 3 mintui mintui 50 Aug 20 08:18 mintui_v0.1

You can see that the actual version is v0.0.1

  • In this case, we want change the production version from v0.0.1 to v0.1. How?
[mintui@mint ~]$ unlink mintui_production; ln -s mintui_v0.1 mintui_production
  • Yay, you did it!
  • Is the release broken? Relax, you can rollback to a previous version. How?
[mintui@mint ~]$ unlink mintui_production; ln -s mintui_v0.0.1 mintui_production

INSTALL

npm install

TEST

Open file (Create if not already there) src/config/google-api-key.ts and write:

export const GOOGLE_API_KEY = "your_google_api_key";

Then run this;

npm start