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: about 1 year 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 (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-11-10T22:16:26.000Z (over 5 years ago)
- Last Synced: 2025-03-27T11:43:38.697Z (about 1 year ago)
- Language: Clojure
- Homepage: https://olano.dev/house-taken/
- Size: 75.2 KB
- Stars: 15
- 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`.