Skip to content

Latest commit

 

History

History
executable file
·
47 lines (36 loc) · 933 Bytes

README.md

File metadata and controls

executable file
·
47 lines (36 loc) · 933 Bytes

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 )