diff --git a/.gitignore b/.gitignore index fb8d9a3..05d7f67 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,9 @@ -node_modules -database/database.sqlite +**/node_modules/ +**/database.sqlite +**/appdata/ +.github test .dockerignore .gitignore -appdata \ No newline at end of file +appdata +docker-compose.yaml \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 29d6fc3..4d6f68e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,8 +5,6 @@ ENV DOCKER_BUILDKIT=1 WORKDIR /app -RUN npm install pm2 -g - RUN --mount=type=bind,source=package.json,target=package.json \ --mount=type=bind,source=package-lock.json,target=package-lock.json \ --mount=type=cache,target=/root/.npm \ @@ -19,4 +17,4 @@ COPY . . EXPOSE 8000 -CMD ["pm2-runtime", "server.js"] +CMD ["node", "server.js"] diff --git a/README.md b/README.md index 2662146..1abc84a 100644 --- a/README.md +++ b/README.md @@ -11,12 +11,20 @@ Alpha v0.20 ( :fire: Experimental :fire: ) [![Docker Pulls](https://img.shields.io/docker/pulls/lllllllillllllillll/dweebui)](https://hub.docker.com/repository/docker/lllllllillllllillll/dweebui) [![GitHub License](https://img.shields.io/github/license/lllllllillllllillll/DweebUI)](https://github.com/lllllllillllllillll/DweebUI/blob/main/LICENSE) -* This is a personal project that I started to get more familiar with Javascript and Node.js. +* This is a personal project I started to get more familiar with Javascript and Node.js. +* Some UI elements are placeholders. +* Please submit issues and post discussions so I know what features to focus on. * I probably should have waited a lot longer to share this :| - + + + + + + + + - ## Features diff --git a/components/containerCard.js b/components/containerCard.js index b28a83a..a8f363c 100644 --- a/components/containerCard.js +++ b/components/containerCard.js @@ -89,9 +89,9 @@ export const containerCard = (data) => { diff --git a/functions/install.js b/functions/install.js index 1fcb887..36747b6 100644 --- a/functions/install.js +++ b/functions/install.js @@ -182,7 +182,7 @@ export const Install = async (req, res) => { user: req.session.user, email: null, event: "App Installation", - message: `${name} installed successfully}`, + message: `${name} installed successfully`, ip: req.socket.remoteAddress }); diff --git a/screenshots/dashboard.png b/screenshots/dashboard.png deleted file mode 100644 index bf34080..0000000 Binary files a/screenshots/dashboard.png and /dev/null differ diff --git a/screenshots/dashboard1.png b/screenshots/dashboard1.png new file mode 100644 index 0000000..f4213cb Binary files /dev/null and b/screenshots/dashboard1.png differ diff --git a/screenshots/dashboard2.png b/screenshots/dashboard2.png new file mode 100644 index 0000000..c36584e Binary files /dev/null and b/screenshots/dashboard2.png differ diff --git a/screenshots/images.png b/screenshots/images.png index f3d244a..6879a89 100644 Binary files a/screenshots/images.png and b/screenshots/images.png differ diff --git a/screenshots/syslogs.png b/screenshots/syslogs.png index 9955064..0875a63 100644 Binary files a/screenshots/syslogs.png and b/screenshots/syslogs.png differ diff --git a/screenshots/volumes.png b/screenshots/volumes.png index 09d1d40..49baa65 100644 Binary files a/screenshots/volumes.png and b/screenshots/volumes.png differ