mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-23 01:55:10 +00:00
6 lines
139 B
TypeScript
6 lines
139 B
TypeScript
import app from "./app";
|
|
const PORT = process.env.PORT || 8080;
|
|
|
|
app.listen(PORT, () => {
|
|
console.log('listening on port ' + PORT);
|
|
})
|