One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| {% extends 'form_div_layout.html.twig' %} | |
| {% block form_row -%} | |
| <div class="row{% if (not compound or force_error|default(false)) and not valid %} has-error{% endif %}"> | |
| <div class="input-field col s12"> | |
| {{- form_widget(form) -}} | |
| {{- form_label(form) -}} | |
| {{- form_errors(form) -}} | |
| </div> | |
| </div> |
| 'use strict' | |
| const bodyParser = require('body-parser') | |
| const compress = require('compression') | |
| const configuration = require('feathers-configuration') | |
| const cors = require('cors') | |
| const favicon = require('serve-favicon') | |
| const feathers = require('feathers') | |
| const hooks = require('feathers-hooks') | |
| const limiter = require('limiter').RateLimiter // Generic limiter used for authentication attempts inside web socket connection |