Skip to content

baoliang/clojure-blog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 )