Skip to content

jihoonerd/mintlog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-mintlog

License: GPL v3 CircleCI

Description

Django based personal blog template

Mintlog is for people who want to operate django-based blog without knowing django. Mintlog is primarily specialized for managing blog postings especially written in Markdown with scientific & engineering contents.

Home Screen

Features

  • Markdown Posting
  • Inline Image Uploading
  • Tagging
  • Mathjax

Installation

This project manages environment with pipenv.

$ pip install pipenv --user

Now, you can prepare your environment and install packages simply by:

$ pipenv install

Running Local Server

For the first launching, DB migration is required:

$ pipenv run "python manage.py makemigrations blog portfolio"
$ pipenv run "python manage.py migrate"

Running local server:

$ pipenv run "python manage.py runserver"