Getting Started
Downloading Conjure
Conjure is written entirely in Java and Clojure. It’s compiled into a self containing and extracting jar file called conjure.jar. To download it, simply visit the Conjure Download section of github.
Creating a new Conjure Project
To create a new Conjure project, simply copy the conjure.jar file to the directory you want the project to live in. Then open a terminal or command prompt and type “java -jar conjure.jar
For example, if you want to create a project named hello_world in an already created projects directory. Use the following steps:
- Copy or move conjure.jar into the projects directory.
- Open a terminal or command prompt and cd into the projects directory.
- Type: “java -jar conjure.jar hello_world”
Conjure will create a directory called hello_world and extract all of it’s files into that directory.
For a more in depth tutorial on Conjure, see the Hello World Tutorial.
Unix Users
You will need to change the permission on the run.sh script to make it runnable. “chmod u+x run.sh” will update the permission appropriately.
