/WebGIS-Server

Web GIS Server by NestJS

Primary LanguageTypeScriptMIT LicenseMIT

WebGIS Server

docker publish Docker Image Size (tag) GitHub

Introduction

a gis tiledata server powered by @nestJS

Deploy

Manual

clone the project to your local machine.

git clone git@github.com:KarasuShin/WebGIS-Server.git
cd WebGIS-Server

install dependencies.

pnpm install

build project.

pnpm run build

run the application

node dist/main.js

or use pm2

pm2 start dist/main.js --name webgis-server

Docker

pull docker image.

docker pull karasushin/webgis-server

start a container

docker run -d --name webgis-server -v -p 3000:3000 -v /path/to/data:/app/data karasushin/webgis-server