https://github.com/nuclearredeye/ludumdare48
Entry for the Ludum Dare 48 game jam
https://github.com/nuclearredeye/ludumdare48
ldjam ludumdare typescript
Last synced: 5 months ago
JSON representation
Entry for the Ludum Dare 48 game jam
- Host: GitHub
- URL: https://github.com/nuclearredeye/ludumdare48
- Owner: NuclearRedeye
- License: mit
- Created: 2021-04-24T07:52:32.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-04-28T15:03:54.000Z (about 4 years ago)
- Last Synced: 2025-04-06T15:18:07.412Z (about 1 year ago)
- Topics: ldjam, ludumdare, typescript
- Language: TypeScript
- Homepage:
- Size: 222 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Ludum Dare 48
Entry for the [Ludum Dare 48](https://ldjam.com/events/ludum-dare/48) game jam.
## Prerequisites
* You have a Linux or OSX machine. Windows should be supported via WSL 2 but has not been tested.
* You have installed a recent version of [GNU Make](https://www.gnu.org/software/make/).
* You have installed a recent version of [Docker](https://www.docker.com/).
## Quick Start
You can get up and running quickly with...
```
make
```
Then open http://localhost:8080 in your browser.
You can also package the application into a docker container...
```
make release
docker build -t ludumdare48:local .
docker run -p 8080:80 ludumdare48:local
```
And again, then open http://localhost:8080 in your browser.
## License
Licensed under [MIT](https://choosealicense.com/licenses/mit/).