Skip to content
This repository was archived by the owner on Sep 29, 2025. It is now read-only.

Commit c6af10f

Browse files
authored
Merge pull request #1 from techsavvyjitsu/develop
Develop
2 parents 0daa894 + 0dd892d commit c6af10f

File tree

14 files changed

+8326
-2
lines changed

14 files changed

+8326
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ pids
1010
*.pid
1111
*.seed
1212
*.pid.lock
13+
*.map
1314

1415
# Directory for instrumented libs generated by jscoverage/JSCover
1516
lib-cov
@@ -30,7 +31,7 @@ bower_components
3031
.lock-wscript
3132

3233
# Compiled binary addons (https://nodejs.org/api/addons.html)
33-
build/Release
34+
dist
3435

3536
# Dependency directories
3637
node_modules/

.vscode/settings.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"editor.tabSize": 2,
3+
"editor.rulers": [150],
4+
"files.trimTrailingWhitespace": true,
5+
"files.insertFinalNewline": true,
6+
"editor.wordWrapColumn": 150,
7+
"files.exclude": {
8+
"**/.git": true,
9+
"**/.DS_Store": true,
10+
"**/node_modules/": true,
11+
"**/dist/": true,
12+
"coverage": true,
13+
"coverage.lcov": true
14+
},
15+
"typescript.tsdk": "node_modules/typescript/lib"
16+
}

README.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,29 @@
1-
# jsfoo18-demo-serverapp
1+
# JSFoo 2018 Demo Server App
2+
3+
This application is built to demo GraphQL server application using Express, TypeScript, Apollo-Server.
4+
5+
## Setup
6+
7+
Install dependences
8+
```
9+
npm i
10+
```
11+
12+
Run the application
13+
```
14+
npm run start:dev
15+
```
16+
17+
18+
19+
20+
## Author & Contributors
21+
22+
Developed and maintained with ❤️ by [Ashwin Hegde](https://www.techjitsu.co.in) and [contributors](https://github.com/techsavvyjitsu/jsfoo18-demo-serverapp/graphs/contributors).
23+
24+
Please feel free to request a feature, or vote for the onces that are already logged or in case you find any typos, errors, enhancements, questions => send the PR 😊
25+
26+
## License
27+
28+
The MIT License (MIT)
29+
Copyright (c) 2018 [Ashwin Hegde](https://www.techjitsu.co.in)

jest.config.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
module.exports = {
2+
globals: {
3+
'ts-jest': {
4+
tsConfigFile: 'tsconfig.json'
5+
}
6+
},
7+
moduleFileExtensions: [
8+
'ts',
9+
'js'
10+
],
11+
transform: {
12+
'^.+\\.(ts|tsx)$': './node_modules/ts-jest/preprocessor.js'
13+
},
14+
testMatch: [
15+
'**/*.spec.(ts|js)'
16+
],
17+
testEnvironment: 'node'
18+
};

0 commit comments

Comments
 (0)