Version: 1.9.8
Platform: x86_64
First, install or update to the latest system software.
sudo apt-get update
sudo apt-get install build-essential chrpath libssl-dev libxft-dev
| mike@rbci:~$ psql -U postgres | |
| psql (9.0.3) | |
| Type "help" for help. | |
| postgres=# update pg_database set datallowconn = TRUE where datname = 'template0'; | |
| UPDATE 1 | |
| postgres=# \c template0 | |
| You are now connected to database "template0". | |
| template0=# update pg_database set datistemplate = FALSE where datname = 'template1'; | |
| UPDATE 1 |
| 1 acorn: A Leiningen template for a ClojureScript setup with Figwheel, Austin, Om. | |
| 8 amp: Leiningen template for AMP (Alfresco Module Package) projects. | |
| 1 angular-cl2: A Leiningen template for using AngularJS and ChlorineJS | |
| 1 angular: Clojure and AngularJS in perfect harmony. | |
| 6 angular: Clojure and AngularJS in perfect harmony. $ lein new angular <name> | |
| 2 angularjs-app: Leiningen template for web application with http-kit and angularjs | |
| 5 angular-simple: Clojure and AngularJS $ lein new angular-simple <name> | |
| 1 aperiodic-cljs: My cljs development starting point. Basically ripped from lein-cljsbuild. | |
| 1 apijr: clojurescript project template | |
| 1 appfgo: 'lein new' template for Funcgo application |
| task :environment do | |
| require './dj-sinatra' | |
| end | |
| namespace :jobs do | |
| desc "Clear the delayed_job queue." | |
| task :clear => :environment do | |
| Delayed::Job.delete_all | |
| end |