cosmo0920 / Ahblog

A simple Blog engine powered by Haskell language, Yesod and Bootstrap 3.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ahblog

Notice: Authorized as admin feature is effectively working with Yesod.Auth.GoogleEmail2.

Build Status

The source code for my internal web app which is powered by the Yesod framework, written in haskell.

Simple responsive design web app using twitter bootstrap v3.1.x. Markdown-driven, comments, post administration and search articles/titles.

More information, please see Japanese manual: 説明書

Try it

If you try this application, strongly recommended to use stack.

git clone and prepare git submodule

$ git clone https://github.com/cosmo0920/Ahblog.git
$ cd Ahblog
$ git submodule update --init --recursive
$ cd static/css && cp ../../bootstrap-select/bootstrap-select.min.css .
$ cd ../js && cp ../../bootstrap-select/bootstrap-select.min.js .
$ cd ../../
$ cp .env-sample .env

Prepare Google Login

This application uses GoogleEmail2 Yesod authentication plugin. So, he/she wants to use this application try the following procedure to get client id and client secret for Google Login system:

In order to use this plugin:

Create an application on the Google Developer Console https://console.developers.google.com/ Create OAuth credentials. The redirect URI will be http://yourdomain/auth/page/googleemail2/complete. (If you have your authentication subsite at a different root than /auth/, please adjust accordingly.) Enable the Google+ API.

ref: https://hackage.haskell.org/package/yesod-auth-1.4.15/docs/Yesod-Auth-GoogleEmail2.html#g:2

And then fill the following variables in .env. (Please replace YOUR_CLIENT_ID and YOUR_CLIENT_SECRET with your obtained client id and secret and save as .env):

GOOGLE_LOGIN_CLIENT_ID=YOUR_CLIENT_ID
GOOGLE_LOGIN_CLIENT_SECRET=YOUR_CLIENT_SECRET

Install dependent libraries and build application with stack

$ cp config/settings-dummy.yml config/settings.yml
$ stack build
$ stack exec Ahblog Development -- --port 3000

This code is provided under the MIT LICENSE. see: LICENSE

About

A simple Blog engine powered by Haskell language, Yesod and Bootstrap 3.

License:Other


Languages

Language:Haskell 91.9%Language:CSS 4.4%Language:JavaScript 2.0%Language:Shell 1.7%