agent01 / test-run.ts
Auto Deployer
Deploy compliance agent services
f39c319
raw
history blame contribute delete
181 Bytes
import fs from 'fs';
import app from './src/index';
const server = app.listen(3001, async () => {
console.log('Server started on 3001');
server.close();
process.exit(0);
});