move main.mjs back into src/
This commit is contained in:
parent
a58743344c
commit
d8d32c7c01
@ -2,7 +2,7 @@
|
|||||||
"name": "ucs-backend",
|
"name": "ucs-backend",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"description": "Backend for the Universal Comment System",
|
"description": "Backend for the Universal Comment System",
|
||||||
"main": "main.mjs",
|
"main": "src/main.mjs",
|
||||||
"author": "alloca",
|
"author": "alloca",
|
||||||
"license": "MPL-2.0",
|
"license": "MPL-2.0",
|
||||||
"repository": {
|
"repository": {
|
||||||
@ -10,8 +10,8 @@
|
|||||||
"url": "https://git.alloca.space/me/ucs.git"
|
"url": "https://git.alloca.space/me/ucs.git"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "nodemon main.mjs",
|
"start": "nodemon src/main.mjs",
|
||||||
"prod": "NODE_ENV=production node main.mjs",
|
"prod": "NODE_ENV=production node src/main.mjs",
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -7,6 +7,8 @@ import RateLimit from 'express-rate-limit';
|
|||||||
import morgan from 'morgan';
|
import morgan from 'morgan';
|
||||||
import cors from 'cors';
|
import cors from 'cors';
|
||||||
import { Feed } from 'feed';
|
import { Feed } from 'feed';
|
||||||
|
import path from 'node:path';
|
||||||
|
import { fileURLToPath } from 'node:url';
|
||||||
|
|
||||||
// Constants
|
// Constants
|
||||||
|
|
||||||
@ -165,7 +167,7 @@ const limiter500 = RateLimit({
|
|||||||
|
|
||||||
app.use(limiter500);
|
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) => {
|
app.get('/api/:site/*', (req, res) => {
|
||||||
const site = req.params.site;
|
const site = req.params.site;
|
@ -20,7 +20,7 @@ cp ../frontend/dist/assets/* public/
|
|||||||
|
|
||||||
PACKAGE="ucs-$(cat package.json | jq -r .version).tar.gz"
|
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 ..
|
cd ..
|
||||||
mv backend/"$PACKAGE" .
|
mv backend/"$PACKAGE" .
|
||||||
echo "$PACKAGE created."
|
echo "$PACKAGE created."
|
||||||
|
Loading…
Reference in New Issue
Block a user