-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
21 lines (19 loc) · 1.01 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* eslint-disable import/no-extraneous-dependencies */
import concurrently from "concurrently";
// Throw and show a stack trace on an unhandled Promise rejection instead of logging an unhelpful warning
// process.on("unhandledRejection", err => {
// throw err;
// });
concurrently([
// TODO: Running gateway is disabled as it is not currently used
// { command: "cd gateway && yarn dev", name: "gateway" },
{ command: "cd services/hexathons && yarn dev", name: "hexathons" },
{ command: "cd services/auth && yarn dev", name: "auth" },
{ command: "cd services/users && yarn dev", name: "users" },
{ command: "cd services/registration && yarn dev", name: "registration" },
{ command: "cd services/notifications && yarn dev", name: "notifications" },
{ command: "cd services/files && yarn dev", name: "files" },
{ command: "cd services/expo && yarn dev", name: "expo" },
{ command: "cd services/hardware && yarn dev", name: "hardware" },
{ command: "cd services/finance && yarn dev", name: "finance" },
]);