Organized the differences between server and docker versions.

We are launching a docker version (server version) today so we want to just organize the repo
so its easier to navigate.
This commit is contained in:
2025-12-16 21:50:22 -05:00
parent b86f14a8f2
commit 28ff6ccc68
193 changed files with 23188 additions and 5 deletions

16
.gitignore vendored
View File

@@ -1,5 +1,11 @@
node_modules desktop/node_modules
electron desktop/electron
dist desktop/dist
.env desktop/.env
build desktop/build
docker/node_modules
docker/electron
docker/dist
docker/.env
docker/build

8
desktop/.dockerignore Normal file
View File

@@ -0,0 +1,8 @@
node_modules
electron
dist
.env
build
.gitignore
Dockerfile
.dockerignore

5
desktop/.gitignore vendored Normal file
View File

@@ -0,0 +1,5 @@
node_modules
electron
dist
.env
build

15
desktop/Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci
RUN npm uninstall @ryuziii/discord-rpc
COPY . .
EXPOSE 54322
CMD ["npm", "run", "start"]

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

Before

Width:  |  Height:  |  Size: 123 KiB

After

Width:  |  Height:  |  Size: 123 KiB

8
docker/.dockerignore Normal file
View File

@@ -0,0 +1,8 @@
node_modules
electron
dist
.env
build
.gitignore
Dockerfile
.dockerignore

5
docker/.gitignore vendored Normal file
View File

@@ -0,0 +1,5 @@
node_modules
electron
dist
.env
build

Some files were not shown because too many files have changed in this diff Show More