Skip to content
This repository has been archived by the owner on Dec 31, 2023. It is now read-only.
Tadaya Tsuyukubo edited this page Apr 3, 2014 · 7 revisions

How to get

You can download war file from [HERE] (bintray.com).

Or, build it from source.

$ git clone [email protected]:ttddyy/evernote-rest-webapp.git
$ cd evernote-rest-webapp
$ mvn package
# war file is generated under target directory

Starting Application

Thanks to Spring Boot, the war file is executable. You can simply start "Evernote REST Webapp":
$ java -jar evernote-rest-webapp.war

Deploy to Servlet Container

You can also simply place the war file into your servlet container.

Please see the configuration for how to write application.properties.

Scalability

"Evernote REST Webapp" doesn't keep any state regarding oauth and evernote operations. Thus, you can simply add multiple instances of application to dispatch work loads if necessary.

Clone this wiki locally