This is the the backend for 3Stack's Subtle Scheme Game, based on the Digital-Compass game framework.
File > Open > [open the pom.xml]
- Go to the directory
cd [path to repo]/backend - Compile jar
mvn clean compile assembly:single - Run the application
java -cp target/subtle_scheme-1.0-SNAPSHOT-jar-with-dependencies.jar com.three_stack.subtle_scheme.Main
- If you want to run the application in the background and have it persist upon logging out, run:
nohup java -cp target/subtle_scheme-1.0-SNAPSHOT-jar-with-dependencies.jar com.three_stack.subtle_scheme.Main &