Added: app.js basic express http listener. Added: migrate-tool, to automatically apply migrations, including a base migration to create a database table to track migrations.
5 lines
No EOL
78 B
JavaScript
5 lines
No EOL
78 B
JavaScript
const express = require('express');
|
|
|
|
const app = express();
|
|
|
|
app.listen(3000); |