https://github.com/digaev/demo_blog
A simple blog based on CodeIgniter 3 PHP framework.
https://github.com/digaev/demo_blog
Last synced: 2 months ago
JSON representation
A simple blog based on CodeIgniter 3 PHP framework.
- Host: GitHub
- URL: https://github.com/digaev/demo_blog
- Owner: digaev
- License: mit
- Created: 2015-06-22T09:49:45.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-22T14:01:02.000Z (about 11 years ago)
- Last Synced: 2025-03-22T22:42:41.748Z (over 1 year ago)
- Language: PHP
- Size: 785 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Demo Blog
=========
A simple demo blog based on CodeIgniter 3 PHP framework.
System requirements
-------------------
* PHP 5.4+
* SQLite3
Features
--------
* Users registration
* Registered users can post articles
* Registered users can "Like" articles
Installation
------------
$ git clone https://github.com/digaev/demo_blog.git
$ cd demo_blog
$ php -S localhost:8000
Setup database
--------------
By default SQLite3 is used.
$ cd demo_blog
$ sqlite3 db/development.sqlite3
sqlite> .read db/blog.sql
Name of the database depends on application environment, if you want to change it, edit the `application/config/database.php` file.