forked from cndreisbach/codemash-2014-presentation
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit f0f5d0f
Showing
6 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"directory": "resources/assets/" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
resources/assets/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"name": "slides", | ||
"dependencies": { | ||
"reveal.js": "2.6.1" | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
(page "index.html") | ||
|
||
(html | ||
(head) | ||
(body | ||
(h1 "Hello, World!"))) |