Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/boxuk/clojure-dev
Build a working, production ready Clojure development environment instantly
https://github.com/boxuk/clojure-dev
Last synced: 5 days ago
JSON representation
Build a working, production ready Clojure development environment instantly
- Host: GitHub
- URL: https://github.com/boxuk/clojure-dev
- Owner: boxuk
- Created: 2013-12-24T10:07:13.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2013-12-24T10:05:56.000Z (almost 11 years ago)
- Last Synced: 2024-04-14T11:50:54.344Z (7 months ago)
- Size: 58.6 KB
- Stars: 0
- Watchers: 46
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Clojure-Dev
This package builds a working Clojure development environment from scratch on Unbuntu Linux
Includes
+ Leiningen
+ Java 7
+ EmacsBuilding development enviroments should be easy. Install Vagrant and Ansible then you're good to go.
## Use
```
vagrant up# Make a coffee...
vagrant ssh
# Write some Clojure
cd /vagrant
lein new myproject
cd myproject
lein test
```If all goes well you should see a failing test ready for you to get to work
```
FAIL in (a-test) (core_test.clj:7)
FIXME, I fail.
expected: (= 0 1)
actual: (not (= 0 1))Ran 1 tests containing 1 assertions.
1 failures, 0 errors.
Tests failed.
```