Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 776 Bytes

README.md

File metadata and controls

32 lines (20 loc) · 776 Bytes

user.frontender.info

Service to control users

Installation

Environment variables

Copy ./.env.sample to ./.env end make sure all variables are set. You may enter any JWT_SECRET value, but make sure to be consistent in all projects with jwt authorization.

cp ./.env.sample ./.env
vi ./.env

MongoDB

Download and run MongoDB Server. You should also set configuration for different environments in the ./config/application.YOUR_ENVIRONMENT.json. Don't forget to create database. In MongoDB console run use fm;

Build

Install dependencies and build project.

npm i
npm run build
npm start

Then you may access service on http://localhost:3055/.