Skip to content

Latest commit

 

History

History
52 lines (33 loc) · 899 Bytes

README.md

File metadata and controls

52 lines (33 loc) · 899 Bytes

Web interactive map (GIS)

OceanOPS web GIS interface

Install

Install node.js.

Install typescript globally:

npm install -g typescript

Verify versions:

node --version
npm --version
tsc --version

Install project dependencies

npm install

Dev run

Will compile and serve the project on localhost (consol will indicate port):

npm run dev

Release

To do in main branch.

Incrementing version

Use npm version command. It will increment the project version, commit and tag it. Depending on SemVer

npm version patch

or

npm version minor

or

npm version major

Build for release

This will create the files to deploy, in dist

npm run build

Deploy

Copy generated files to maps/interactive

Publish release on GitHub

throught he release menu, following previous releases pattern.