mirror of
https://github.com/run-llama/automatic-doc-translate.git
synced 2026-07-01 21:34:05 -04:00
11 lines
242 B
JavaScript
11 lines
242 B
JavaScript
|
|
const express = require('express');
|
|
|
|
const app = express();
|
|
|
|
app.use(express.static('public'));
|
|
app.use(express.static('save'));
|
|
|
|
app.listen(process.env.PORT || 3000, (port) => {
|
|
console.log(`Example app listening on port ${port}!`);
|
|
}); |