Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 544 Bytes

README.md

File metadata and controls

39 lines (30 loc) · 544 Bytes

Server-side app created with TypeORM and Express

JSON API client for CRUD operations on user and domains entities.

How to run

Start the database server

docker compose up --build

Install the dependencies

npm i

And start the API server in another tab

npm start

For livereload use

npm run dev

Linting and formatting

Run eslint

npm run lint # to view issues
npm run lint:fix # to autofix issues

Run prettier

npm run format # to view issues
npm run format:write # to autofix issues