diff --git a/backend/package.json b/backend/package.json index 32b271a..fd5d1fb 100644 --- a/backend/package.json +++ b/backend/package.json @@ -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": { diff --git a/backend/main.mjs b/backend/src/main.mjs similarity index 97% rename from backend/main.mjs rename to backend/src/main.mjs index 02de431..b625617 100644 --- a/backend/main.mjs +++ b/backend/src/main.mjs @@ -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; diff --git a/bundle.sh b/bundle.sh index fe44978..4daa373 100755 --- a/bundle.sh +++ b/bundle.sh @@ -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."