mirror of
https://github.com/janishutz/libreevent.git
synced 2025-11-26 22:04:23 +00:00
fix bugs, full two fa system done
This commit is contained in:
9
src/server/test.js
Normal file
9
src/server/test.js
Normal file
@@ -0,0 +1,9 @@
|
||||
const express = require( 'express' );
|
||||
let app = express();
|
||||
const http = require( 'http' );
|
||||
|
||||
app.use( express.static( '.' ) );
|
||||
|
||||
|
||||
const PORT = process.env.PORT || 8081;
|
||||
http.createServer( app ).listen( PORT );
|
||||
Reference in New Issue
Block a user