A Clojure web application designed to help you:
- Learn clojure
- Become familar with the common libraries with an emphasis on web development
- Learn the development deployment and maintenance tools, procedures available to make your life simplier
- Be able to come back to a project weeks,months,years later and have something you can run use and understand
The idea is that making easy to contribute to the project, test the project and deploy the project right at the beginning will help you to complete the project. Getting a project done is about keeping the momentuem going.
Coupling awesome technology like clojure/script together with some devops best practices can help you get the project completed and allows it to be improved upon in a maintainable fashion
Every project should have out of the box
- Working Demo in the cloud
- Documentation of the code in the literate style
- Pallet deployment
- Publish artifact to repo
- Test framework
- Source Control Strategy
Try to use lein a central point for doing all you development/operations/maintence tasks for example:
Devops:
lein pallet up -P docker
lein deploy private
lein pallet up prd/stg/qa -P aws/rs/docker
lein autoexpect
lein cljsbuild auto
lein test
lein marg
Being able to write the code in the application as it is running. Creating the code while creating the test. Then copying the test into a test suite file and evaluating that. Further since the lein autoexpect plugin is continuous running your test it will pick up the change and run it.
Copyright © 2013 FIXME
Distributed under the Eclipse Public License, the same as Clojure.