Merge pull request #279 from VikramNagwal/staging

This commit is contained in:
Andrew
2023-12-17 10:21:54 +05:30
committed by GitHub
-6
View File
@@ -170,12 +170,6 @@ app.get('/', function (req, res) {
res.status(200).send('open-sign-server is running !!!');
});
// There will be a test page available on the /test path of your server url
// Remove this before launching your app
app.get('/test', function (req, res) {
res.sendFile(path.join(__dirname, '/public/test.html'));
});
if (!process.env.TESTING) {
const port = process.env.PORT || 8080;
const httpServer = http.createServer(app);