Skip to content

nidup/ldjam42

Repository files navigation

Ludum Dare 42

Ludum Dare entry

LD JAM 41

Everything is hand-crafted, from source code to assets:

Play!

Play the game online on itch.io

Development

Run the dev image

Run to mount local project code inside the container and bind ports

docker run --name phaser --rm -v "$PWD":/usr/src/app -p 8080:8080 -d nidup/phaser:latest

Your container should appears in the list when typing,

docker ps

Install / update project dependencies

docker exec -it phaser npm install

Running the project in dev mode:

Launch webpack server in watch mode,

docker exec -it phaser npm run dev

You can access your project in your browser,

http://localhost:8080/

Deployment

Build the bundle.js

docker exec -it phaser npm run build

Commit then push the bundle.js

git add build/bundle.js
git commit
git push

Licenses

MIT for the code of this repository (src folder).

CC BY-SA 4.0 for the artwork (assets folder).

About

Ludum Dare #42

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published