Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
cndreisbach committed Dec 26, 2013
0 parents commit f0f5d0f
Show file tree
Hide file tree
Showing 6 changed files with 64 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"directory": "resources/assets/"
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
resources/assets/
36 changes: 36 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# slides

A Hoplon project designed to...well, that part is up to you.

## Dependencies

- java 1.7+
- [boot][1]
- [leiningen][2]

## Usage

You'll probably want to have two terminals open in your project's
directory.

1. Start the auto-compiler.

```bash
$ boot watch hoplon
```

2. Open the compiled html file.

```bash
$ cd resources/public
$ open index.html
```

3. You're already done.

## License

Copyright © 2013, **Your Name Goes Here**

[1]: https://github.com/tailrecursion/boot
[2]: https://github.com/technomancy/leiningen
11 changes: 11 additions & 0 deletions boot.edn
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{:project slides
:version "0.1.0-SNAPSHOT"
:dependencies [[tailrecursion/boot.core "1.1.1"]
[tailrecursion/boot.task "1.0.1"]
[tailrecursion/hoplon "4.0.7"]
[org.clojure/clojurescript "0.0-2127"]]
:require-tasks #{[tailrecursion.boot.task :refer :all]
[tailrecursion.hoplon.boot :refer :all]}
:public "resources/public"
:src-static #{"resources/assets"}
:src-paths #{"src"}}
7 changes: 7 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "slides",
"dependencies": {
"reveal.js": "2.6.1"
}
}

6 changes: 6 additions & 0 deletions src/index.cljs.hl
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
(page "index.html")

(html
(head)
(body
(h1 "Hello, World!")))

0 comments on commit f0f5d0f

Please sign in to comment.