/UltimateLogDecodeServer

Decode source code for UltimateLog.

Primary LanguageJava

Mars XLog Decoder for UltimateLog

This project has deploy an application on Google App Engine.

Direct Link: http://www.baiduyaowan.com

UltimateLog

Link: https://github.com/parkerjj/UltimateLog

How to Deploy it on your own Server

Setup

• Download and initialize the Cloud SDK

gcloud init
  • Create an App Engine app within the current Google Cloud Project

    gcloud app create

Maven

Running locally

mvn appengine:run

To use vist: http://localhost:8080/

Deploying

mvn appengine:deploy

To use vist: https://YOUR-PROJECT-ID.appspot.com

Gradle

Running locally

gradle appengineRun

If you do not have gradle installed, you can run using ./gradlew appengineRun.

To use vist: http://localhost:8080/

Deploying

gradle appengineDeploy

If you do not have gradle installed, you can deploy using ./gradlew appengineDeploy.

To use vist: https://YOUR-PROJECT-ID.appspot.com

Testing

mvn verify

or

gradle test

As you add / modify the source code (src/main/java/...) it's very useful to add unit testing to (src/main/test/...). The following resources are quite useful:

-UltimateLogDecodeServer