Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
f6871ced27 |
1
.dockerignore
Normal file
1
.dockerignore
Normal file
@ -0,0 +1 @@
|
||||
node_modules
|
8
Dockerfile
Normal file
8
Dockerfile
Normal file
@ -0,0 +1,8 @@
|
||||
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" ]
|
@ -15,6 +15,3 @@ It's as simple as:
|
||||
npm install
|
||||
npm run start
|
||||
```
|
||||
|
||||
## Play online
|
||||
[on my website](https://simponic.xyz/bbiy/)
|
||||
|
9
docker-compose.yml
Normal file
9
docker-compose.yml
Normal file
@ -0,0 +1,9 @@
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
prod:
|
||||
build: ./
|
||||
ports:
|
||||
- "3000:3000"
|
||||
expose:
|
||||
- 3000
|
2
src/bootstrap.js
vendored
2
src/bootstrap.js
vendored
@ -106,7 +106,7 @@ game.bootstrap = (() => {
|
||||
|
||||
const loadLevels = function() {
|
||||
game.levels = [];
|
||||
fetch('/levels')
|
||||
fetch('levels')
|
||||
.then((r) => r.json())
|
||||
.then((r) => game.levels = r);
|
||||
}
|
||||
|
@ -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.");
|
||||
alert("Failed to start background music; please allow autoplay in your browser settings and refresh.");
|
||||
}
|
||||
requestAnimationFrame(game.loop);
|
||||
};
|
||||
|
@ -1,7 +1,7 @@
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: Lucida Sans Typewriter,Lucida Console,monaco,Bitstream Vera Sans Mono,monospace;
|
||||
background-image: url("/assets/image/background.gif");
|
||||
background-image: url("/bbiy/assets/image/background.gif");
|
||||
background-size: cover;
|
||||
image-rendering: pixelated;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user