Skip to content
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.

Latest commit

 

History

History
30 lines (23 loc) · 752 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 752 Bytes

This is a very simple blog engine that can create, edit and delete posts.

Requirements

To install the requirements run:

$ pip install -r requirements.pip

To compile the css you will also require less. This can be done using:

$ sudo apt-get install node-js npm
$ npm install less

Then compile the css using the following from the root of the project:

$ lessc omegablog/static/less/omegablog.less > omegablog/static/css/COMPILED/omegablog.css

Tests

The project comes with a full suite of tests (both web interface and logic). To run them use from the root of the project:

$ cp omegablog/blog_site/_developer_settings.py omegablog/blog_site/developer_settings.py
$ python omegablog/manage.py test