Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/facundoolano/house-taken-over
Text adventure inspired by the short story by Julio Cortázar
https://github.com/facundoolano/house-taken-over
Last synced: 5 days ago
JSON representation
Text adventure inspired by the short story by Julio Cortázar
- Host: GitHub
- URL: https://github.com/facundoolano/house-taken-over
- Owner: facundoolano
- License: epl-1.0
- Created: 2016-11-05T23:48:11.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-11-10T22:16:26.000Z (about 4 years ago)
- Last Synced: 2024-04-14T15:06:33.151Z (7 months ago)
- Language: Clojure
- Homepage: https://olano.dev/house-taken/
- Size: 75.2 KB
- Stars: 14
- Watchers: 2
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# House Taken Over
Text adventure inspired by the short story "House Taken Over", written by Julio Cortázar.
The game uses the [advenjure](https://github.com/facundoolano/advenjure) engine.A WIP version can be played online [here](https://facundoolano.github.io/house-taken).
## Usage
Clone the respository and [Install leiningen](http://leiningen.org/#install) if necessary.
To run the game on the terminal:```
lein run
```To run the game on the browser, using figwheel for development:
```
lein figwheel dev
```Then open `http://localhost:3449`.
To compile the optimized JavaScript to run in production:
```
lein cljsbuild once main
```Then open `resources/public/index.html`.