-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jonas Verhoelen
committed
Apr 16, 2019
1 parent
bd7c15f
commit d1c1fee
Showing
6 changed files
with
36 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"singleQuote": true, | ||
"printWidth": 160, | ||
"tabWidth": 4, | ||
"semi": false | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,15 +8,18 @@ | |
"npm": ">=6.4.1" | ||
}, | ||
"scripts": { | ||
"start": "ts-node service/index.ts" | ||
"start": "ts-node service/index.ts", | ||
"prettier:check": "prettier --check service/**/*.{ts,tsx,js,jsx}", | ||
"prettier:write": "prettier --write service/**/*.{ts,tsx,js,jsx}" | ||
}, | ||
"dependencies": { | ||
"express": "^4.16.2" | ||
}, | ||
"devDependencies": { | ||
"@types/express": "4.11.1", | ||
"typescript": "3.1.1", | ||
"ts-node": "6.1.1" | ||
"ts-node": "6.1.1", | ||
"prettier": "^1.9.2" | ||
}, | ||
"author": "Jonas Verhoelen <[email protected]>", | ||
"repository": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
import { Application } from './Application' | ||
|
||
/** | ||
* Entrypoint for bootstrapping and starting the application. | ||
* Might configure aspects like logging, telemetry, memory leak observation or even orchestration before. | ||
* This is about to come later! | ||
*/ | ||
|
||
Application.createApplication().then(() => { | ||
console.info('The application was started! Kill it using Ctrl + C') | ||
}) |