move main.mjs back into src/

This commit is contained in:
me 2025-03-15 09:00:15 +02:00
parent a58743344c
commit d8d32c7c01
3 changed files with 7 additions and 5 deletions

View File

@ -2,7 +2,7 @@
"name": "ucs-backend",
"version": "0.1.0",
"description": "Backend for the Universal Comment System",
"main": "main.mjs",
"main": "src/main.mjs",
"author": "alloca",
"license": "MPL-2.0",
"repository": {
@ -10,8 +10,8 @@
"url": "https://git.alloca.space/me/ucs.git"
},
"scripts": {
"start": "nodemon main.mjs",
"prod": "NODE_ENV=production node main.mjs",
"start": "nodemon src/main.mjs",
"prod": "NODE_ENV=production node src/main.mjs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {

View File

@ -7,6 +7,8 @@ import RateLimit from 'express-rate-limit';
import morgan from 'morgan';
import cors from 'cors';
import { Feed } from 'feed';
import path from 'node:path';
import { fileURLToPath } from 'node:url';
// Constants
@ -165,7 +167,7 @@ const limiter500 = RateLimit({
app.use(limiter500);
app.use(express.static("public"));
app.use(express.static(path.join(path.dirname(fileURLToPath(import.meta.url)), "../public")));
app.get('/api/:site/*', (req, res) => {
const site = req.params.site;

View File

@ -20,7 +20,7 @@ cp ../frontend/dist/assets/* public/
PACKAGE="ucs-$(cat package.json | jq -r .version).tar.gz"
tar czvf "$PACKAGE" package.json package-lock.json main.mjs node_modules/ public/
tar czvf "$PACKAGE" package.json package-lock.json src/ node_modules/ public/
cd ..
mv backend/"$PACKAGE" .
echo "$PACKAGE created."