Future home of Recogito v2.0.
- Java 8 JDK
- Play Framework v2.5.0
- To use image annotation, you need to have the vips image processing system installed. If vips is not available on the command line, Recogito is set to reject uploaded images as 'unsupported content'. (Note: on Ubuntu, 'libvips-tools' is the package you need.)
- Create a copy of the file
conf/application.conf.templateand name itconf/application.conf. Make any environment-specific changes there. (For the most part, the defaults should be fine.) - Type
activator runto start the application in development mode. - Point your browser to http://localhost:9000
- To generate an Eclipse project, type
activator eclipse.
If you stick with the default settings, Recogito will automatically create an SQLite database and
an embedded ElasticSearch index, so there's nothing you need to do. However, for production use
we recommend a PostgreSQL DB and a separate ElasticSearch installation. Modify your settings in
conf/application.conf accordingly.
- To test production mode before deploying, type
activator testProd - For full production deployment, refer to the current Play Framework docs
- Be sure to set a random application secret in
conf/application.conf. Play includes a utility to generate one for you - typeactivator playGenerateSecret.