Old - Code for hadoopexpress.in**(not in use right now)**, online tool for building and running ML models.
ML Server dev setup steps :
a) checkout
- cd to any base folder
- git init hadoopexpress
- cd hadoopexpress
- git remote add -f origin https://github.com/soniclavier/HadoopExpress.git
- git config core.sparseCheckout true
- echo "MlServer" >> .git/info/sparse-checkout
- git pull origin master
b) eclipse setup
- select file > import > maven > existing maven projects
- select MlServer as the root directory
c) starting the server
- from dir 'MlServer', run 'mvn clean package'
- sh target/bin/main
- check 127.0.0.1:8484 or localhost:8484
d) committing a change
- add any IDE file to be ignored into .gitignore file
- git status ( to see if any unnecessary file is included)
- git pull origin master
- git add .
- git commit
- git push