clojure-blog icon indicating copy to clipboard operation
clojure-blog copied to clipboard

clojure-blog

Blog

Language

Server clojure Clojure

Web Server Ring

Web framwork Luminusweb

Template Fleet Clabango

ORM SQLkorma

MarkDownEdior https://github.com/miclle/Markdown-Editor

Storeage

Postgresql

Install

Create database use follow sql in postgresql! CREATE DATABASE blog;

CREATE TABLE content ( title text, content text, md text, "created-at" timestamp with time zone, "updated-at" timestamp with time zone, tag text, id bigserial NOT NULL )

CREATE TABLE users ( email character varying(30), admin boolean, last_login time without time zone, is_active boolean, pass character varying(100), id bigserial NOT NULL )