Skip to content
macourtney edited this page Sep 13, 2010 · 15 revisions

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 < your project name >”.

For example, if you want to create a project named hello_world in an already created projects directory. Use the following steps:

  1. Copy or move conjure.jar into the projects directory.
  2. Open a terminal or command prompt and cd into the projects directory.
  3. 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.

Clone this wiki locally