Skip to content

Commit

Permalink
Merge pull request #15 from andrew-codes:andrew-codes/issue4
Browse files Browse the repository at this point in the history
Playnite plugin project
  • Loading branch information
andrew-codes authored Nov 14, 2023
2 parents 3d2fd15 + 8f60675 commit edac838
Show file tree
Hide file tree
Showing 17 changed files with 833 additions and 11 deletions.
10 changes: 8 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ USER root
RUN apt-get update
RUN apt-get install -y \
mosquitto \
mosquitto-clients
mosquitto-clients
RUN mosquitto_passwd -b -c /etc/mosquitto/passwd local dev
RUN echo -e "allow_anonymous false \
password_file /etc/mosquitto/passwd" > /etc/mosquitto/conf.d/default.conf
Expand All @@ -25,4 +25,10 @@ RUN apt-get update
RUN apt-get install -y \
mongodb-org
RUN sed -i "s,\\(^[[:blank:]]*bindIp:\\) .*,\\1 0.0.0.0," /etc/mongod.conf
RUN sed -i "s,\\(^[[:blank:]]*dbPath:\\) .*,\\1 /workspaces/playnite-web/.mongodb/data," /etc/mongod.conf
RUN sed -i "s,\\(^[[:blank:]]*dbPath:\\) .*,\\1 /workspaces/playnite-web/.mongodb/data," /etc/mongod.conf

RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
RUN echo "deb https://download.mono-project.com/repo/debian stable-buster main" > /etc/apt/sources.list.d/mono-official-stable.list
RUN apt-get update -y
RUN apt-get install -y \
mono-complete
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
.mongodb


.nx/cache
.nx/cache

.dist
.test-runs
Loading

0 comments on commit edac838

Please sign in to comment.