Files
old-domensis/backend/src/index.ts

9 lines
244 B
TypeScript
Raw Normal View History

2020-02-14 21:07:33 +01:00
import {SERVER_PORT} from "./config";
import app from "./server";
2020-02-14 07:53:18 +01:00
// start the Express server
2020-02-14 21:07:33 +01:00
app.listen(SERVER_PORT, () => {
2020-02-14 07:53:18 +01:00
// tslint:disable-next-line:no-console
2020-02-14 21:07:33 +01:00
console.log(`server started at http://localhost:${SERVER_PORT}`);
});