Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 908 Bytes

README.md

File metadata and controls

45 lines (31 loc) · 908 Bytes

HK Geological Model

Showcasing of 3D geological model of Hong Kong

Note

This repo is for showcasing what I did during my master degree, 3D modelling with machine learning and deep learning. However, the model is uploaded to cloud with private setting. You can replace the voxel layer ID with your own.

Instructions

Clone this repository to your computer

git clone

Install dependencies:

npm install

Running the app

Now you can start the vite development server to test the app on your local machine:

npm run dev

Open http://localhost:3000.

Deployment

To build/deploy the app, you can simply run:

# it will place all files needed for deployment into the /dist directory
npm run build

Docker

  1. docker build -t app .
  2. docker run --name app -p 3000:3000 -d app
  3. Your application should now be accessible at http://localhost:3000.