Skip to content

Commit

Permalink
feat(Refactoring): Refactoring project for nestJs
Browse files Browse the repository at this point in the history
  • Loading branch information
MatheusRBarbosa committed Jul 26, 2018
1 parent 1bd5cee commit fdb04e4
Show file tree
Hide file tree
Showing 37 changed files with 14,097 additions and 2,914 deletions.
4 changes: 0 additions & 4 deletions .babelrc

This file was deleted.

14 changes: 0 additions & 14 deletions .env.example

This file was deleted.

4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
node_modules/
build/
.env
node_modules
4 changes: 4 additions & 0 deletions .nestcli.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"language": "ts",
"collection": "@nestjs/schematics"
}
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"singleQuote": true,
"trailingComma": "all"
}
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

1 change: 0 additions & 1 deletion Procfile

This file was deleted.

41 changes: 38 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
**VAGAS - BACKEND**
===================
[![Build Status](https://travis-ci.org/Dev-ES/vacancy-backend.svg?branch=develop)](https://travis-ci.org/Dev-ES/vacancy-backend)
# vacancy

## Description

Vagas - Backend

## Installation

```bash
$ npm install
```

## Running the app

```bash
# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
npm run start:prod
```

## Test

```bash
# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov
```

3 changes: 0 additions & 3 deletions cucumber.js

This file was deleted.

10 changes: 10 additions & 0 deletions nodemon.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"watch": [
"src"
],
"ext": "ts",
"ignore": [
"src/**/*.spec.ts"
],
"exec": "ts-node -r tsconfig-paths/register src/main.ts"
}
Loading

0 comments on commit fdb04e4

Please sign in to comment.