Welcome to myValencer, the valence pattern search engine for FrameNet!
myValencer is a web application powered by the Valencer API
@InProceedings{kabbach-ribeyre:2017:ELEX,
author = {Kabbach, Alexandre and Ribeyre, Corentin},
title = {myValencer: a Valence Patterns Search Engine for FrameNet},
booktitle = {eLex 2017 conference},
month = {September},
year = {2017},
address = {Leiden, Netherlands},
url = {https://elex.link/elex2017/}
}
Check out myValencer's manual
Run the following command in your terminal, under myValencer directory:
npm install
Modify the app/config/production.js
file according to your desired settings:
const production = {
port: 5555,
api_host: 'https://api.valencer.io',
};
With port
the port of myValencer and api_host
the URL of the Valencer API
Run the following command in your terminal, under myValencer directory:
npm run build
Run the following command in your terminal, under myValencer directory:
npm run start
To stop the server, run:
npm run stop
To monitor myValencer once started, run:
pm2 monit myValencer
If pm2 is not installed globally in your environment, you can also do:
./node_modules/.bin/pm2 monit myValencer
To access myValencer logs, run:
pm2 logs myValencer