An alternative Ludum Dare entries viewer.
Go to file
Aaron Mueller a3a0c7af86 Adjust the image path in the .gitignore 2014-01-31 00:01:27 +01:00
prototypes/layout Added the layout prototype 2014-01-06 12:08:44 +01:00
resources/public Clean up some stuff and make it uberwar compatible 2013-10-06 18:08:50 +02:00
src fix tha nasty competition-id issue and make it run again 2014-01-30 21:02:25 +01:00
.gitignore Adjust the image path in the .gitignore 2014-01-31 00:01:27 +01:00
Procfile Initial commit 2013-09-28 10:40:54 +02:00
README.mkd Update the readme a little 2014-01-20 21:55:31 +01:00
project.clj Some more documentation 2014-01-19 20:36:56 +01:00

README.mkd

Installation

Check out the source and run lein deps in the root folder to fetch all dependencies. This takes a couple of seconds. After that, you can run the server with lein ring server-headless. Now you can verify that nothing went wrong if you open up the browser and visit http://0.0.0.0:3000/. There should be nothing displayed because we doesn't fetch any data yet. If that works, we can proceed with the next step and import data. You can leave the terminal open or start the server just from the repl (preferred way).

Run a repl with lein repl in another terminal. Here we can start the server, initiate the database and run the scrape process. First we start the server (if not allready done)

(use 'ldview.repl)
(ldview.repl/start-server)

Next, we set up the database and start the fetching process. This take a little time, so make yourself a cup of tea and be proud of yourself to get this far :)

(use 'ldview.tasks.runner)
(ldview.tasks.runner/load-competition 27 "10 Seconds")

Development

You want to make some changes on the codebase? Sure you will, it's clojure! The server is allready online and serving html pages. If you making changes on the code, the browser automatically reload the page after every code change and the repl reloads the code after saving. This is verry handy if you like interactive development. If you in doubt of a good editor, use emacs with the clojure-mode and cider-mode. Use M-x cider-jack-in to run the repl from the editor.

Authors

We are two brothers having fun with games in our rare sparetime. We put the stuff we do and made on http://arg-games.com/ eventually :)