This is a code repository for the SIB - Swiss Institute of Bioinformatics CALIPHO group neXtProt project
See: https://www.nextprot.org/
This project is licensed under the terms of the GNU General Public License, version 2 or any later version (see file LICENSE.txt)
git clone https://github.com/calipho-sib/nextprot-api.git #(1st time)
cd nextprot-api #(1st time)
mvn clean compile install -DskipTests #(1st time)
mvn eclipse:eclipse -Dwtpversion=2.0
#Then add the web module into an Apache Tomcat Server (configured in Eclipse) and that's it
#Make sure to add the environment variable -Dspring.profiles.active=DEV on the tomcat startup
#To make it run (by command line)
cd web
mvn jetty:run -Dspring.profiles.active=DEV
mvn test
docker build -t nextprot-preprod .
docker run -p 8080:8080 nextprot-preprod