https://github.com/nuclearredeye/ludumdare32
Entry for the Ludum Dare 32 game jam
https://github.com/nuclearredeye/ludumdare32
Last synced: about 1 year ago
JSON representation
Entry for the Ludum Dare 32 game jam
- Host: GitHub
- URL: https://github.com/nuclearredeye/ludumdare32
- Owner: NuclearRedeye
- Created: 2020-03-07T12:58:22.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-04-28T15:02:40.000Z (about 4 years ago)
- Last Synced: 2025-02-28T22:19:52.125Z (over 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 48.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# The Kitchen Sink
It's the distant future, and the world has become a shadow of its former self with corruption and discontent rife throughout all levels of society. But one hope still remains, humanities greatest weapon of last resort is on the brink of deployment. But it just needs a little more time before it can be used. It falls on you, to protect the Kitchen Sink until it is ready to save the world.
# Running
```
npm run build
npm run debug
```
Then, goto [here](http://localhost:5000) in your prefered browser.
# Docker
You can also build the project into a standalone docker container.
```
npm run build
docker build -t ludumdare32:dev .
docker run --rm -p 5000:80 -m 32 ludumdare32:dev
```
Then, goto [here](http://localhost:5000) in your prefered browser.