Skip to content

Latest commit

 

History

History
68 lines (45 loc) · 1.25 KB

README.md

File metadata and controls

68 lines (45 loc) · 1.25 KB

Teamwork-backend

About the project

Teamwork is an internal social network for employees of an organization. The goal of this application is to facilitate more interaction between colleagues and promote team bonding.

Build Status Coverage Status Test Coverage

Tech Stack

Server: Node.js, Express.js, PostgreSQL,

Testing the app locally

Clone the project

 git clone https://github.com/boyeoffice/Teamwork-backend.git

Go to the project directory

  cd Teamwork-backend

Install dependencies

  npm install

Setup enviroment

cp .env.example .env

Run migrations

npm run migrate

Rollback migrations

npm migrate:rollback

Seed data into database

npm run seed

Start server

npm start

Run test

npm test