We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d30bdb commit 3f8d631Copy full SHA for 3f8d631
2 files changed
package.json
@@ -10,6 +10,7 @@
10
"scripts": {
11
"lint": "eslint --fix src tools tests --ext .ts",
12
"build": "tsc",
13
+ "api": "ts-node ./src/api/index.ts",
14
"test": "jest --config jestconfig.json",
15
"start": "npm run build && electron ./dist/src/main.js --enable-logging --remote-debugging-port=9222",
16
"atlas": "node ./dist/tools/build-atlas.js",
src/api/index.ts
@@ -1,4 +1,6 @@
1
+import { LOG_MAJOR } from '../util/log_util';
2
import { startServer } from './server';
3
4
// Start the API server
5
+LOG_MAJOR("Starting API server...");
6
startServer();
0 commit comments