revert 6f637968bdd5dea7f472e5a07517e072ed69715e
All checks were successful
Neutral/pipeline/head This commit looks good
All checks were successful
Neutral/pipeline/head This commit looks good
revert Version 1.0.0 - Basic Web Application
This commit is contained in:
16
routes/internal.js
Normal file
16
routes/internal.js
Normal file
@ -0,0 +1,16 @@
|
||||
var express = require('express');
|
||||
var router = express.Router();
|
||||
var path = require("path")
|
||||
|
||||
router.get("/socketlink", (req,res,next) => {
|
||||
|
||||
if(process.env.DEV == true) {
|
||||
|
||||
res.send("ws://localhost:3001")
|
||||
} else {
|
||||
res.send("ws://neutral.raphix.fr")
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
module.exports = router;
|
Reference in New Issue
Block a user