Compare commits

..

1 Commits
prod ... master

Author SHA1 Message Date
Logan Hunt
10a7945df6
Update README.md 2022-06-04 15:13:52 -07:00
7 changed files with 7 additions and 22 deletions

View File

@ -1 +0,0 @@
node_modules

View File

@ -1,8 +0,0 @@
FROM node:18.2.0
ENV NODE_ENV=production
WORKDIR /app
COPY ["package.json", "package-lock.json*", "./"]
RUN npm install
COPY . .
CMD [ "node", "index.js" ]

View File

@ -15,3 +15,6 @@ It's as simple as:
npm install
npm run start
```
## Play online
[on my website](https://simponic.xyz/bbiy/)

View File

@ -1,9 +0,0 @@
version: '3'
services:
prod:
build: ./
ports:
- "3000:3000"
expose:
- 3000

2
src/bootstrap.js vendored
View File

@ -106,7 +106,7 @@ game.bootstrap = (() => {
const loadLevels = function() {
game.levels = [];
fetch('levels')
fetch('/levels')
.then((r) => r.json())
.then((r) => game.levels = r);
}

View File

@ -31,7 +31,7 @@ game.startLoop = () => {
game.lastTimeStamp = performance.now();
game.assets.music.play();
if (game.assets.music.paused) {
alert("Failed to start background music; please allow autoplay in your browser settings and refresh.");
alert("Failed to start background music; please allow autoplay in your browser settings.");
}
requestAnimationFrame(game.loop);
};

View File

@ -1,7 +1,7 @@
body {
margin: 0;
font-family: Lucida Sans Typewriter,Lucida Console,monaco,Bitstream Vera Sans Mono,monospace;
background-image: url("/bbiy/assets/image/background.gif");
background-image: url("/assets/image/background.gif");
background-size: cover;
image-rendering: pixelated;
}
@ -70,4 +70,4 @@ body {
.menu-button:hover {
background-color: #d0d0d0;
}
}