https://github.com/facundoolano/advenjure-example
Example game for the advenjure engine
https://github.com/facundoolano/advenjure-example
Last synced: 3 months ago
JSON representation
Example game for the advenjure engine
- Host: GitHub
- URL: https://github.com/facundoolano/advenjure-example
- Owner: facundoolano
- License: epl-1.0
- Created: 2016-04-23T18:39:06.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-10-15T00:20:37.000Z (over 8 years ago)
- Last Synced: 2025-10-04T19:28:15.184Z (8 months ago)
- Language: Clojure
- Size: 164 KB
- Stars: 10
- Watchers: 1
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# advenjure-example

Example game for the [advenjure](https://github.com/facundoolano/advenjure) text game engine.
You can play it online [here](https://facundoolano.github.io/advenjure/).
## Usage
Clone the respository and [Install leiningen](http://leiningen.org/#install) if necessary.
To run the example game on the terminal:
```
lein run
```
To run the example 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`.