Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 409 Bytes

File metadata and controls

35 lines (23 loc) · 409 Bytes

cite-api

REST API for managing citations.

Development

Setup a database.

docker run -d --name postgres -e POSTGRES_PASSWORD=postgres -p 5432:5432 postgres

Create the database.

docker exec -it postgres psql -U postgres -c "CREATE DATABASE cite"

Install dependencies.

yarn

Run migrations.

yarn migrate

Start the server.

yarn start:dev