moved index to src
This commit is contained in:
12
server-node/src/index.ts
Normal file
12
server-node/src/index.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import express from 'express';
|
||||
const app = express();
|
||||
const PORT = 8000;
|
||||
|
||||
// server-node: backend api
|
||||
import api from './routes/api/api-controller';
|
||||
app.use("/api/", api);
|
||||
|
||||
// serve
|
||||
app.listen(PORT, () => {
|
||||
console.log(`http://localhost:${PORT}`);
|
||||
});
|
||||
Reference in New Issue
Block a user