server
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,3 +1,4 @@
|
|||||||
/node_modules/
|
/node_modules/
|
||||||
/package-lock.json
|
/package-lock.json
|
||||||
/.env
|
/.env
|
||||||
|
/public/json/counter.json
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
"count": 0
|
|
||||||
}
|
|
||||||
@@ -9,7 +9,7 @@ require('dotenv').config();
|
|||||||
const app = express();
|
const app = express();
|
||||||
const PORT = process.env.PORT || 3000;
|
const PORT = process.env.PORT || 3000;
|
||||||
const GITEA_SECRET = process.env.GITEA_SECRET
|
const GITEA_SECRET = process.env.GITEA_SECRET
|
||||||
const counterFilePath = path.join(__dirname, 'public/json/wanderers.json');
|
const counterFilePath = path.join(__dirname, 'public/json/counter.json');
|
||||||
|
|
||||||
function readCounter() {
|
function readCounter() {
|
||||||
const data = fs.readFileSync(counterFilePath)
|
const data = fs.readFileSync(counterFilePath)
|
||||||
|
|||||||
Reference in New Issue
Block a user