Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Muska-Ami committed Dec 22, 2023
0 parents commit 5f3231d
Show file tree
Hide file tree
Showing 2,582 changed files with 549,102 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
HOST=0.0.0.0
PORT=4518
12 changes: 12 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const express = require('express');
const dotenv = require('dotenv');
const proxy_router = require('./src/router');

dotenv.config();
const app = express();

proxy_router.load(app);

app.listen(process.env.PORT, process.env.HOST, () => {
console.log(`Server running at http://${process.env.HOST}:${process.env.PORT}`);
});
173 changes: 173 additions & 0 deletions node_modules/.modules.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5f3231d

Please sign in to comment.