This commit is contained in:
Jonny_Bro (Nikita) 2024-08-29 12:00:05 +05:00
parent a61e4c3382
commit b07d0097d3
Signed by: jonny_bro
GPG key ID: 3F1ECC04147E9BD8
7 changed files with 36 additions and 7 deletions

View file

@ -26,7 +26,11 @@
**/values.dev.yaml
**/build
**/dist
public/css/*.css
public/courses/*.txt
LICENSE
README.md
data/main_db.json
data/test_db.json
stack.env
public/css/*.css
public/courses/*.txt

3
.gitignore vendored
View file

@ -1,8 +1,9 @@
# Custom
stack.env
public/css/*
public/courses/*
data/*
!data/main_db.json
!data/main_db.example.json
# Logs
logs

View file

@ -51,6 +51,8 @@ COPY . .
RUN pnpm run build
# This project specific
RUN mv stack.env.example stack.env
RUN mv data/main_db.example.json data/main_db.json
RUN chmod -R 777 data/
RUN chmod -R 777 public/
# End

View file

@ -1,4 +1,6 @@
require("dotenv").config();
require("dotenv").config({
path: "stack.env",
});
module.exports = {
/* Set true for production database */

12
data/main_db.example.json Normal file
View file

@ -0,0 +1,12 @@
{
"admins": {
"YOUR_STEAMID64": true
},
"keys": {},
"courses": {},
"locked": {},
"rating": {},
"records": {},
"usernames": {},
"ratelimits": {}
}

View file

@ -21,10 +21,10 @@ router.get("/", async (req, res) => {
/* Pages Count */
const coursesCount = Object.keys(courses).length;
const pagesCount = Math.max(Math.ceil(coursesCount / 20), 0);
if (page === "Page") page = 1;
if (page * 20 - coursesCount >= 20) page = 1;
/* Pages Dropdown */
let pagesDropdown = "";
for (let i = 1; i <= pagesCount; i++) {
@ -118,7 +118,7 @@ router.get("/", async (req, res) => {
plays: "DESC",
};
if (sortType === "none" || sortType === "Sort")
if (sortType === "none" || sortType === "Sort by")
sortedCodesData = codesData.sort((a, b) => {
return b.time - a.time;
});

8
stack.env.example Normal file
View file

@ -0,0 +1,8 @@
PROD=true
DOMAIN=http://localhost:6547
PORT=6547
RATELIMIT=5000
IPCHANGETIME=10800000
STEAMKEY=NO_KEY
COOKIE=NO_COOKIE
WEBHOOK=""