monkblog / monkblog-php
MonkBlog a blogging engine.
Installs: 15
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 1
Open Issues: 19
Type:project
Requires
- php: >=5.5.9
- barryvdh/laravel-debugbar: ^2.0
- barryvdh/laravel-ide-helper: ^2.0
- filp/whoops: ^1.1
- laravel/framework: 5.1.*
- laravelcollective/html: ~5.0
- michelf/php-markdown: 1.4.1
- monkblog/theme-manager: 1.1.*
- pda/pheanstalk: ^3.0
- rcrowe/twigbridge: ~0.7
- twig/extensions: ~1.2.0
Requires (Dev)
- codeclimate/php-test-reporter: dev-master
- fzaninotto/faker: ~1.4
- mockery/mockery: 0.9.*
- phpspec/phpspec: ~2.1
- phpunit/phpunit: ~4.0
README
A blogging engine built on Laravel 5.1.
Homestead local dev instructions
If you prefer to use Homestead over Docker, you can find instructions on the Laravel website.
Docker local dev instructions
If you don't yet have Docker installed, install it according to the Docker website.
After you have Docker installed, this command will get you started:
docker-compose up
Dependency installation and configuration
Next, you'll need to run these commands, in order:
cp .env.example .env
composer install
npm install (or, better yet, yarn)
bower install
gulp
docker exec monkblogphp_app_1 php artisan key:generate
docker exec monkblogphp_app_1 php artisan migrate
docker exec monkblogphp_app_1 php artisan db:seed
Adding your first admin user
Add an admin user by using the following console command:
php artisan user:generate
If you want to run it through a Docker container, do it like this:
docker exec -it monkblogphp_app_1 php artisan user:generate
Admin Interface
Access the admin interface via /admin
on your site.
License
The Monk blog engine is licensed under the MIT license
The Laravel framework is open-sourced software licensed under the MIT license