@todo
$ npm install
Create file .env
with database configuration:
host=
username=
password=
database=
Create file src/config/users.ts
, for example:
export const users = [
{
userId: 1,
username: 'maria',
password: 'guess',
},
]
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod