Skip to content

Commit 15c1a91

Browse files
committed
Added graphql schema
1 parent ef253db commit 15c1a91

32 files changed

+13252
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

.nestcli.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"language": "ts",
3+
"collection": "@nestjs/schematics"
4+
}

.prettierrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "all"
4+
}

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# chatql poweredBy Gueva
2+
3+
## Description
4+
5+
Easy to use chat api for graphql
6+
7+
## Installation
8+
9+
```bash
10+
$ npm install
11+
```
12+
13+
## Running the app
14+
15+
```bash
16+
# development
17+
$ npm run start
18+
19+
# watch mode
20+
$ npm run start:dev
21+
22+
# production mode
23+
npm run start:prod
24+
```
25+
26+
## Test
27+
28+
```bash
29+
# unit tests
30+
$ npm run test
31+
32+
# e2e tests
33+
$ npm run test:e2e
34+
35+
# test coverage
36+
$ npm run test:cov
37+
```
38+

nodemon.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"watch": [
3+
"src"
4+
],
5+
"ext": "ts",
6+
"ignore": [
7+
"src/**/*.spec.ts"
8+
],
9+
"exec": "ts-node -r tsconfig-paths/register src/main.ts"
10+
}

0 commit comments

Comments
 (0)