Skip to content

opennebraska/public-salaries-api

Repository files navigation

An API serving public payroll data for the state of Nebraska.

Install the app

$ npm install

Launch the database

$ docker-compose up

Run the app

# development
$ npm run start

# watch mode (when source code files change, the web app re-launches)
$ npm run start:dev

# The app is now running here: http://localhost:3000/employees/1

# production mode
$ npm run start:prod

Run tests

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov

# run one specific test
$ npx jest --testNamePattern='GET /employees/1 gets employee with name masked'

Connect to DB

$ PGPASSWORD=password psql --username=postgres
postgres=# select count(*) from agency;
    68
postgres=# select count(*) from employee;
 17619

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published