Spaces:
Running
Running
Update server.js
Browse files
server.js
CHANGED
@@ -1,8 +1,7 @@
|
|
1 |
const express = require('express');
|
2 |
const app = express();
|
3 |
-
const PORT = process.env.PORT ||
|
4 |
|
5 |
-
// Change this value to false if you want the API to return false
|
6 |
const RESPONSE_VALUE = true;
|
7 |
|
8 |
app.get('/', (req, res) => {
|
|
|
1 |
const express = require('express');
|
2 |
const app = express();
|
3 |
+
const PORT = process.env.PORT || 7860;
|
4 |
|
|
|
5 |
const RESPONSE_VALUE = true;
|
6 |
|
7 |
app.get('/', (req, res) => {
|