Skip to content

Commit

Permalink
feat: API Server default configurations added
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhishek-Mallick committed Aug 7, 2024
1 parent 12ff2f2 commit 85a27da
Show file tree
Hide file tree
Showing 3 changed files with 709 additions and 1 deletion.
8 changes: 8 additions & 0 deletions plura/api-server/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// This pages automates the process of processing the GIT_REPO_URL to the docker container and distrubutes the load

const express = require('express');

const app = express();
const PORT = 9000;

app.listen(PORT, () => console.log(`API Server Running .. ${PORT}`))
Loading

0 comments on commit 85a27da

Please sign in to comment.