Our dataset can be browsed and filtered through the "Catalogue" page at http://volcashdb.ipgp.fr/.
Our dataset is publicly accessible in bulk through the FIGSHARE repository [here].(https://figshare.com/collections/VolcAshDB_Dataset_of_classified_volcanic_ash_particle_images_and_features/7644656).
Install NodeJS by entering below commands to terminal
brew update && brew install node
Check if NodeJS and NPM are installed
node -v
npm -v
-
Clone Volcash github repo
git clone [email protected]:dbenet-ntu/VolcAshDB.git
-
Modify
front-end/src/Constants.js
to setPROXY
variable. ThisPROXY
variable is the address of the back-end of the site.export const PROXY = "http://localhost:5001"
Notes: On production server, this variable is set differently.
-
Install required dependencies for
back-end
cd back-end npm install
-
Install required dependies for
front-end
cd front-end npm install
-
Start
back-end
servicecd back-end npm start
-
Opening a different terminal, start
front-end
developement enviromentcd front-end npm start